Files
smartsamba/rust/Cargo.toml
T
2026-05-03 10:44:02 +00:00

22 lines
472 B
TOML

[package]
name = "rustsamba"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "rustsamba"
path = "src/main.rs"
[dependencies]
anyhow = "1"
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
futures-util = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
smolder-smb-core = "0.3.0"
smb-server = "0.4.0"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }