DarkCat09
95362fd9e8
Note: current version of main.rs example just disables TLS cert verification if `-k` arg provided. Instead, it must use custom storage for self-signed certs. tokio with macros & fs features in dev deps is needed for main.rs example.
19 lines
466 B
TOML
19 lines
466 B
TOML
[package]
|
|
name = "tokio-gemini"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
mime = "0.3.17"
|
|
num_enum = "0.7.3"
|
|
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"] }
|