-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
69 lines (66 loc) · 1.87 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
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "asphalt"
version = "0.8.2"
edition = "2021"
license = "MIT"
authors = ["Jack T <jack@jackt.space>"]
description = "Upload and reference Roblox assets in code"
repository = "https://github.com/jacktabscode/asphalt"
homepage = "https://github.com/jacktabscode/asphalt"
readme = "README.md"
[dependencies]
anyhow = "1.0.91"
bit-vec = "0.8"
blake3 = "1.5.4"
clap = { version = "4.5.20", features = ["derive"] }
clap-verbosity-flag = "2.2.2"
console = { version = "0.15.8", features = ["ansi-parsing"] }
cookie = "0.15.2"
dotenv = "0.15.0"
env_logger = "0.11.5"
globset = "0.4.15"
image = "0.25.4"
inquire = "0.7.5"
log = "0.4.22"
rbx_binary = { version = "0.7.7", features = ["serde"] }
rbx_cookie = { version = "0.1.4", default-features = false }
rbx_xml = "0.13.5"
rbxcloud = "0.14.0"
reqwest = { version = "0.12.9", default-features = false, features = [
"rustls-tls",
"gzip",
] }
resvg = "0.44.0"
roblox_install = "1.0.0"
serde = { version = "1.0.214", features = ["derive"] }
serde-xml-rs = "0.6.0"
tokio = { version = "1.41.0" }
toml = "0.8.19"
walkdir = "2.5.0"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.13.2"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
# Publish jobs to run in CI
pr-run-mode = "skip"
# The archive format to use for windows builds (defaults .zip)
windows-archive = ".zip"
# The archive format to use for non-windows builds (defaults .tar.xz)
unix-archive = ".zip"
# Checksums to generate for each App
checksum = "false"