19 lines
389 B
TOML
19 lines
389 B
TOML
|
|
[package]
|
||
|
|
name = "smartfs-bin"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "smartfs-bin"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
smartfs-protocol = { path = "../smartfs-protocol" }
|
||
|
|
smartfs-core = { path = "../smartfs-core" }
|
||
|
|
tokio.workspace = true
|
||
|
|
serde.workspace = true
|
||
|
|
serde_json.workspace = true
|
||
|
|
clap.workspace = true
|
||
|
|
base64.workspace = true
|