-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
57 lines (48 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "tarmac"
description = "Resource compiler and asset manager for Roblox projects"
version = "0.7.5"
authors = ["Lucien Greathouse <[email protected]>", "Jonathan Holmes"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/Roblox/tarmac"
homepage = "https://github.com/Roblox/tarmac"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[workspace]
members = [
".",
"packos",
]
default-members = [
".",
"packos",
]
[dependencies]
packos = { path = "packos", version = "0.1.0" }
secrecy = "0.8.0"
rbx_cookie = "0.1.4"
anyhow = "1.0.27"
backtrace = "0.3.46"
blake3 = "0.1.3"
env_logger = "0.7.0"
fs-err = "2.3.0"
globset = "0.4.4"
image = "0.23.12"
lazy_static = "1.4.0"
log = "0.4.8"
path-slash = "0.1.3"
png = "0.15.3"
regex = "1.3.3"
reqwest = "0.9.24"
roblox_install = "0.3.0"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
structopt = { version = "0.3", default-features = false }
thiserror = "1.0.13"
toml = "0.5.3"
walkdir = "2.2.9"