mirror of
https://github.com/CompeyDev/ruck.git
synced 2025-01-08 11:49:09 +00:00
22 lines
No EOL
585 B
TOML
22 lines
No EOL
585 B
TOML
[package]
|
|
name = "ruck-01"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bytes = { version = "1", features = ["serde"] }
|
|
bincode = {version = "1.3.3" }
|
|
futures = { version = "0.3.0", features = ["thread-pool"]}
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1.16.1", features = ["full"] }
|
|
tokio-serde = { version = "~0.8", features = ["bincode"] }
|
|
tokio-stream = { version = "~0.1.6", features = ["net"]}
|
|
tokio-util = { version = "0.6.3", features = ["full"]}
|
|
|
|
[[bin]]
|
|
name = "server"
|
|
path = "src/server.rs"
|
|
|
|
[[bin]]
|
|
name = "client"
|
|
path = "src/client.rs" |