rkvm/rkvm-net/Cargo.toml

20 lines
522 B
TOML
Raw Normal View History

2020-09-16 18:04:18 +02:00
[package]
name = "rkvm-net"
2023-04-18 22:30:57 +02:00
version = "0.1.0"
2020-09-16 18:04:18 +02:00
authors = ["Jan Trefil <8711792+htrefil@users.noreply.github.com>"]
2023-04-16 19:29:27 +02:00
edition = "2021"
2020-09-16 18:04:18 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rkvm-input = { path = "../rkvm-input" }
2020-10-23 19:47:57 +02:00
serde = { version = "1.0.117", features = ["derive"] }
2023-04-16 19:29:27 +02:00
bincode = "1.3.3"
2021-01-01 17:37:00 +01:00
tokio = { version = "1.0.1", features = ["io-util"] }
2023-04-16 19:29:27 +02:00
async-trait = "0.1.68"
thiserror = "1.0.40"
2023-04-17 19:52:57 +02:00
hmac = "0.12.1"
sha2 = "0.10.6"
rand = "0.8.5"
2023-09-09 11:07:43 +02:00
tracing = "0.1.37"