[package]
edition = "2021"
name = "rbxsync"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Declaratively manage Roblox game passes, badges, and developer products"
homepage = "https://github.com/dev-bap/rbxsync"
readme = "README.md"
keywords = [
"roblox",
"gamepass",
"badge",
"devproduct",
"sync",
]
categories = [
"command-line-utilities",
"game-development",
]
license = "MIT"
repository = "https://github.com/dev-bap/rbxsync"
[lib]
name = "rbxsync"
path = "src/lib.rs"
[[bin]]
name = "rbxsync"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "codegen"
path = "tests/codegen.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "diff"
path = "tests/diff.rs"
[[test]]
name = "lockfile"
path = "tests/lockfile.rs"
[[test]]
name = "rename"
path = "tests/rename.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bit-vec]
version = "0.8"
[dependencies.blake3]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.colored]
version = "2"
[dependencies.image]
version = "0.25"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"multipart",
"gzip",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"