13 lines
376 B
TOML
13 lines
376 B
TOML
[package]
|
|
name = "client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
tokio = { workspace = true, features = ["io-util", "macros", "net", "rt-multi-thread"] }
|
|
|
|
proto = { path = "../proto" }
|