You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
871 B
29 lines
871 B
[package]
|
|
name = "rsh"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ad-hoc-iter = "0.2.3"
|
|
atomic_refcell = "0.1.7"
|
|
base64 = "0.13.0"
|
|
bytes = { version = "1.0.1", features = ["serde"] }
|
|
chacha20stream = { version = "2.2.1", features = ["async", "serde"] }
|
|
color-eyre = "0.5.11"
|
|
cryptohelpers = { version = "1.8.2" , features = ["serialise", "full"] }
|
|
futures = "0.3.16"
|
|
mopa = "0.2.2"
|
|
pin-project = "1.0.8"
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
|
serde_cbor = "0.11.1"
|
|
smallvec = { version = "1.6.1", features = ["union", "serde", "write", "const_generics"] }
|
|
stackalloc = "1.1.1"
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
tokio-uring = "0.1.0"
|
|
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.2"
|