Files
BA-AD/Cargo.toml
Deathemonic d9b419f064 feat (v2.4.0): new logging system
- updated the logging system using tracing
- moved out the file manager to baad_core
- bump dependencies to latest
- remove unnecessary panics
- docs: readme update
- docs: library update
- api: changed anyhow to eyre
2025-09-10 21:05:28 +08:00

39 lines
980 B
TOML

[package]
name = "baad"
version = "2.4.0"
edition = "2024"
[lib]
name = "baad"
path = "src/lib.rs"
[[bin]]
name = "baad"
path = "src/main.rs"
[features]
default = []
no_logs = ["baad-core/no_logs"]
no_debug = ["baad-core/no_debug"]
no_error = ["baad-core/no_error"]
[dependencies]
reqwest = { version = "0.12.23", features = ["json"] }
serde_json = { version = "1.0.143", features = ["preserve_order"] }
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.45.1", features = ["full"] }
walkdir = "2.5.0"
eyre = "0.6.12"
ctor = "0.5.0"
zip = "5.0.1"
base64 = "0.22.1"
lazy-regex = "3.4.1"
glob = "0.3.3"
nucleo = "0.5.0"
clap = { version = "4.5.47", features = ["derive"] }
bacy = { git = "https://github.com/Deathemonic/BA-CY", version = "1.3.5" }
trauma = { git = "https://github.com/RZinth/trauma", version = "2.6.0", features = ["rustls"] } # Using a custom trauma
baad-core = { git = "https://github.com/RZinth/BA-AD-Core", version = "2.3.1" }