28 lines
760 B
TOML
28 lines
760 B
TOML
[package]
|
|
name = "tokio-gemini"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
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"]
|
|
|
|
[dependencies]
|
|
base64ct = "1.6.0"
|
|
bytes = "1.7.1"
|
|
mime = "0.3.17"
|
|
num_enum = "0.7.3"
|
|
sha2 = "0.10.8"
|
|
tokio = { version = "1.39.2", features = ["io-util", "net"] }
|
|
tokio-rustls = { version = "0.26.0", default-features = false, features = ["ring"] }
|
|
url = "2.5.2"
|
|
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"] }
|