email-client

A gtk4 Email Client
git clone git://archive.git.mtrnord.blog/erooster-mail/email-client.git
Log | Files | Refs | LICENSE

Cargo.toml (1176B)


      1 [package]
      2 name = "mail-client"
      3 version = "0.1.0"
      4 edition = "2021"
      5 
      6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
      7 
      8 [dependencies]
      9 gtk = { version = "0.6", package = "gtk4", features = ["v4_8"] }
     10 relm4 = "0.6.0-alpha.1"
     11 relm4-macros = "0.6.0-alpha.1"
     12 relm4-components = "0.6.0-alpha.1"
     13 tracing-subscriber = "0.3.16"
     14 tracing = "0.1.37"
     15 tokio = { version = "1.25.0", features = ["full"] }
     16 sequoia-openpgp = "1.13.0"
     17 notify-rust = { version = "4.7.1", default-features = false, features = ["d", "images"] }
     18 # Needs to be in sync with imap crate version
     19 rustls-connector = { version = "0.16.1"}
     20 color-eyre = "0.6.2"
     21 reqwest = { version = "0.11.14", features = ["rustls", "rustls-tls"], default-features = false }
     22 quick-xml = { version = "0.27.1", features = ["serde", "serialize"] }
     23 serde = { version = "1.0.152", features = ["derive"] }
     24 once_cell = "1.17.1"
     25 
     26 [dependencies.imap]
     27 version = "3.0.0-alpha.10"
     28 git = "https://github.com/erooster-mail/rust-imap.git"
     29 branch = "MTRNord/clippy"
     30 default-features = false
     31 features = ["rustls-tls"]
     32 
     33 [build-dependencies]
     34 glib-build-tools = "0.17"
     35 
     36 [profile.release]
     37 lto = true
     38 opt-level = 3