tokio-gemini/Cargo.toml

26 lines
709 B
TOML
Raw Normal View History

2024-07-31 15:58:17 +03:00
[package]
name = "tokio-gemini"
version = "0.1.0"
edition = "2021"
2024-08-01 15:39:42 +03:00
license = "Apache-2.0"
homepage = "https://unw.dc09.ru"
repository = "https://git.dc09.ru/unweb/tokio-gemini"
readme = "README.md"
description = "Gemini protocol client & server written in Rust with Tokio"
categories = ["network-programming"]
2024-07-31 15:58:17 +03:00
[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"
[[example]]
name = "main"
path = "examples/main.rs"
[dev-dependencies]
tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread", "io-util", "fs"] }