23 lines
579 B
TOML
23 lines
579 B
TOML
[package]
|
|
name = "client"
|
|
version = "0.1.0"
|
|
authors = ["michael-bailey <mickyb18a@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cursive = "0.17"
|
|
uuid = {version = "1.1.2", features = ["serde", "v4"]}
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
crossbeam = "0.8.0"
|
|
crossbeam-channel = "0.5.0"
|
|
tokio = { version = "1.9.0", features = ["full"] }
|
|
futures = "0.3.16"
|
|
|
|
async-trait = "0.1.52"
|
|
|
|
server = {path = '../server'}
|
|
foundation = {path = '../foundation'}
|