[package]
edition = "2024"
name = "tungsten-cli"
version = "1.0.0"
build = false
exclude = [
".github/**",
"assets",
"assets/**",
"examples",
"examples/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Another command line tool to manage Roblox assets similar to Tarmac and Asphalt."
homepage = "https://pwnwrkz.github.io/tungsten-docs"
readme = "README.md"
keywords = [
"roblox",
"assets",
"sync",
"upload",
]
license-file = "LICENSE"
repository = "https://github.com/pwnwrkz/tungsten/"
[[bin]]
name = "tungsten"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.colored]
version = "3.1.1"
[dependencies.crunch]
version = "0.5.3"
[dependencies.glob]
version = "0.3.3"
[dependencies.hex]
version = "0.4.3"
[dependencies.image]
version = "0.25.10"
features = [
"jpeg",
"bmp",
"tga",
]
[dependencies.rayon]
version = "1.11.0"
[dependencies.reqwest]
version = "0.13.2"
features = [
"json",
"multipart",
]
[dependencies.resvg]
version = "0.47.0"
[dependencies.roblox_install]
version = "1.0.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sha2]
version = "0.11.0"
[dependencies.tiny-skia]
version = "0.12.0"
[dependencies.tokio]
version = "1.50.0"
features = ["full"]
[dependencies.toml]
version = "1.1.0"
[dependencies.usvg]
version = "0.47.0"
[profile.dist]
lto = "thin"
inherits = "release"