Skip to content

Commit

Permalink
Update rbx_cookie to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Vorlias committed Nov 1, 2023
1 parent b51191f commit 10bba1d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 15 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tarmac"
description = "Resource compiler and asset manager for Roblox projects"
version = "0.7.3"
version = "0.7.4"
authors = ["Lucien Greathouse <[email protected]>", "Jonathan Holmes"]
edition = "2018"
license = "MIT"
Expand Down Expand Up @@ -33,7 +33,7 @@ default-members = [
packos = { path = "packos", version = "0.1.0" }

secrecy = "0.8.0"
rbx_cookie = "0.1.2"
rbx_cookie = "0.1.4"

anyhow = "1.0.27"
backtrace = "0.3.46"
Expand Down
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# NOTE: [THIS FORK OF TARMAC HAS BEEN MOVED TO ROJO-RBX](https://github.com/rojo-rbx/tarmac)

<div align="center">
<h1>Tarmac</h1>
</div>
Expand All @@ -12,10 +10,6 @@

<hr />

This is a more up-to-date fork of the [Tarmac repository](https://github.com/Roblox/Tarmac) by Roblox, since the original repository has effectively been *abandoned* (hasn't had updates since 2020).

Tarmac is a resource compiler and asset manager for Roblox projects. It helps enable hermetic place builds when used with tools like [Rojo](https://github.com/rojo-rbx/rojo).

Tarmac is inspired by projects like [Webpack](https://webpack.js.org/) that make it easy to reference assets from code.

## Installation
Expand All @@ -26,15 +20,15 @@ The recommended way to install Tarmac is with [Aftman](https://github.com/LPGhat
Add an entry to the `[tools]` section of your `aftman.toml` file:

```toml
tarmac = "vorlias/[email protected].3"
tarmac = "rojo-rbx/[email protected].4"
```

### Installing with Foreman

Add an entry to the `[tools]` section of your `foreman.toml` file:

```toml
tarmac = { source = "vorlias/tarmac", version = "0.7.3" }
tarmac = { source = "rojo-rbx/tarmac", version = "0.7.4" }
```


Expand Down
2 changes: 1 addition & 1 deletion examples/01-basic-game/src/assets.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- This file was @generated by Tarmac. It is not intended for manual editing.
return {
logo = "rbxassetid://4643741203",
logo = "rbxassetid://15231990932",
}
2 changes: 1 addition & 1 deletion examples/01-basic-game/tarmac-manifest.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[inputs."assets/logo.png"]
hash = "4eed36123e5df48c5733d073df14a7158b927b0b54b6375c2c9bf81a31de38ab"
id = 4643741203
id = 15231990932
packable = false

0 comments on commit 10bba1d

Please sign in to comment.