libtbr/Cargo.toml

37 lines
752 B
TOML
Raw Normal View History

2025-05-26 12:39:09 +07:00
[package]
name = "libtbr"
2025-09-05 08:56:21 +07:00
version = "0.1.1"
2025-05-26 12:39:09 +07:00
edition = "2024"
[lib]
name = "tbr"
crate-type = ["rlib", "cdylib"]
[[bin]]
name = "uniffi-bindgen"
path = "uniffi-bindgen.rs"
2025-05-26 12:39:09 +07:00
[dependencies]
chrono = "0.4.44"
2025-09-08 11:25:46 +07:00
flate2 = "1.1.2"
2025-09-08 15:53:36 +07:00
git2 = "0.20.2"
indexmap = "2.14.0"
2025-05-26 12:39:09 +07:00
log = "0.4.27"
lalrpop-util = { version = "0.20.0", features = ["lexer"] }
openssl-sys = { version = "0.9.116", features = ["vendored"] }
quick-xml = "0.39.2"
2025-09-08 10:45:36 +07:00
rand = "0.9.2"
2025-05-26 12:39:09 +07:00
rayon = "1.10.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
2025-09-08 10:45:36 +07:00
tar = "0.4.44"
uniffi = { version = "0.31.1", features = ["cli", "tokio"] }
2025-09-08 10:45:36 +07:00
walkdir = "2.5.0"
zip = "5.0.0"
[build-dependencies]
lalrpop = "0.20.0"
[dev-dependencies]
uniffi = { version = "0.31.1", features = ["build"] }