2024-07-31 15:58:17 +03:00
|
|
|
[package]
|
|
|
|
name = "tokio-gemini"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
mime = "0.3.17"
|
2024-07-31 21:14:29 +03:00
|
|
|
num_enum = "0.7.3"
|
|
|
|
tokio = { version = "1.39.2", features = ["io-util", "net"] }
|
2024-07-31 15:58:17 +03:00
|
|
|
tokio-rustls = { version = "0.26.0", default-features = false, features = ["ring"] }
|
2024-07-31 21:14:29 +03:00
|
|
|
url = "2.5.2"
|
2024-07-31 15:58:17 +03:00
|
|
|
webpki-roots = "0.26.3"
|
2024-08-01 11:05:39 +03:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "main"
|
|
|
|
path = "examples/main.rs"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread", "io-util", "fs"] }
|