diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2021-04-25 16:58:17 +0200 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2021-04-25 16:58:17 +0200 |
| commit | 72c2b83748a601d02c82d5bcb4220d3b238281cc (patch) | |
| tree | 38acb17db4a48fc9f340680ea5b86c6cd49d8f2a /notmuch/Cargo.toml | |
| parent | 51fa75397dda2c280f29760e7b525caefc03642e (diff) | |
| parent | 2231a5cf6cdeb90c1cdb75d161a0063d4a385576 (diff) | |
| download | mail-72c2b83748a601d02c82d5bcb4220d3b238281cc.tar.gz | |
Add 'notmuch/' from commit '2231a5cf6cdeb90c1cdb75d161a0063d4a385576'
git-subtree-dir: notmuch
git-subtree-mainline: 51fa75397dda2c280f29760e7b525caefc03642e
git-subtree-split: 2231a5cf6cdeb90c1cdb75d161a0063d4a385576
Diffstat (limited to 'notmuch/Cargo.toml')
| -rw-r--r-- | notmuch/Cargo.toml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/notmuch/Cargo.toml b/notmuch/Cargo.toml new file mode 100644 index 0000000..48e7415 --- /dev/null +++ b/notmuch/Cargo.toml @@ -0,0 +1,37 @@ +[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 + +[badges] +travis-ci = { repository = "vhdirk/notmuch-rs" } + +[dependencies] +libc = "0.2" +# clippy = { version = "0.0.211", optional = true } +supercow = "0.1.0" + +[dev-dependencies] +dirs = "1.0" +tempfile = "3" +gethostname = "0.2.0" +maildir = "0.3.2" +lettre = "0.9.2" +lettre_email = "0.9.2" + +[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 |
