sieverman/Cargo.toml

33 lines
1.0 KiB
TOML

[package]
name = "sieverman"
version = "0.1.0"
authors = ["Franz Dietrich<dietrich@teilgedanken.de>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Connect to a Managesieve-Server"
documentation = "https://docs.rs/bitflags"
readme = "README.md"
homepage = "https://serde.rs/"
repository = "https://github.com/rust-lang/cargo/"
keywords = ["email", "sieve", "managesieve", "filter", "client"]
categories = ["command-line-utilities", "email", "api-bindings"]
default-run = "sieverman"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pki-types = { package = "rustls-pki-types", version = "1.0", features = [
"alloc",
] }
tokio-rustls = { version = "0.25" }
env_logger = "0.10.1"
log = "0.4.20"
tokio = { version = "1.34.0", features = ["full"] }
webpki-roots = "0.26.0"
nom = "7.1.3"
managesieve = { path = "../managesieve" }
anyhow = "1.0"
thiserror = "1.0"
gtk4 = { version = "0.7.3", features = ["gnome_45"] }
serde = { version = "1.0.193", features = ["derive"] }