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.
24 lines
681 B
24 lines
681 B
[package]
|
|
name = "transfer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-compression = { version = "0.3.8", features = ["tokio", "brotli"] }
|
|
base64 = "0.13.0"
|
|
bytes = "1.1.0"
|
|
color-eyre = { version = "0.5.11", default-features = false }
|
|
cryptohelpers = { version = "1.8.2", features = ["full"] }
|
|
futures = "0.3.17"
|
|
getrandom = "0.2.3"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.14"
|
|
openssl = "0.10.36"
|
|
pretty_env_logger = "0.4.0"
|
|
serde = { version = "1.0.130", features = ["derive"] }
|
|
serde_cbor = "0.11.2"
|
|
serde_json = "1.0.68"
|
|
tokio = { version = "1.12.0", features = ["full"] }
|