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.
25 lines
644 B
25 lines
644 B
[package]
|
|
name = "quiclime"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.71", features = ["backtrace"] }
|
|
async-trait = "0.1.68"
|
|
axum = "0.6.18"
|
|
env_logger = "0.10.0"
|
|
idna = "0.4.0"
|
|
log = "0.4.19"
|
|
parking_lot = "0.12.1"
|
|
quinn = "0.10.1"
|
|
rand = "0.8.5"
|
|
rustls = "*"
|
|
rustls-pemfile = "1.0.2"
|
|
serde = { version = "1.0.164", features = ["derive"] }
|
|
serde_json = "1.0.97"
|
|
thiserror = "1.0.40"
|
|
tokio = { version = "1.28.2", features = ["rt-multi-thread", "fs", "macros", "io-util", "net"] }
|