12 lines
257 B
TOML
12 lines
257 B
TOML
[package]
|
|
name = "client"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "client"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
mtp = { version = "0.1.0", path = "../../", features = ["client", "crypto", "files"] }
|
|
tokio = { version = "1", features = ["full"] }
|