diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 41 |
1 files changed, 10 insertions, 31 deletions
@@ -1,37 +1,16 @@ [package] -name = "notmuch" -version = "0.6.0" -authors = ["Dirk Van Haerenborgh <vhdirk@gmail.com>"] -homepage = "https://github.com/vhdirk/notmuch-rs" -repository = "https://github.com/vhdirk/notmuch-rs" -description = "Rust interface and bindings for notmuch" -license = "GPL-3.0+" -readme = "README.md" -keywords = ["email", "notmuch"] -autotests = false +name = "mail" +version = "0.1.0" +authors = ["Gustav Sörnäs <gustav@sornas.net>"] +edition = "2018" -[badges] -travis-ci = { repository = "vhdirk/notmuch-rs" } +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -libc = "0.2" -# clippy = { version = "0.0.211", optional = true } -supercow = "0.1.0" +crossterm = "0.19" # terminal control (cursor, style) +termimad = "0.10" # markdown renderer -[dev-dependencies] -dirs = "1.0" -tempfile = "3" -gethostname = "0.2.0" -maildir = "0.3.2" -lettre = "0.9.2" -lettre_email = "0.9.2" +notmuch = "0.6" -[features] -v0_21 = [] -v0_26 = ["v0_21"] -default = ["v0_26"] - -[[test]] -name = "tests" -path = "tests/lib.rs" -harness = true
\ No newline at end of file +[profile.release] +lto = "thin" |
