blob: f51bda20320c154ec85f8d10044ba88c04f1d7f2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
[package]
name = "notmuch"
version = "0.5.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
|