[package] name = "sieverman" version = "0.1.0" authors = ["Franz Dietrich"] 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.11" log = "0.4.20" tokio = { version = "1.34.0", features = ["full", "tracing"] } webpki-roots = "0.26.0" nom = "7.1.3" managesieve = { path = "../managesieve" } anyhow = "1.0" thiserror = "1.0" gtk = { version = "0.7", package = "gtk4", features = [ "gnome_45", "blueprint", ] } serde = { version = "1.0.193", features = ["derive"] } libadwaita = { version = "0.5.3", features = ["gtk_v4_10", "v1_4"] } gtk-blueprint = "0.2" phf = "0.11" tracing = "0.1" console-subscriber = "0.2"