aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: cc152bf2f60d2f717ba273655ddf15030cbd148c (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
[package]
name = "notmuch"
version = "0.2.1"
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"

[badges]
travis-ci = { repository = "vhdirk/notmuch-rs" }

[dependencies]
libc = "0.2"
clippy = { version = "0.0.193", optional = true }

[dev-dependencies]
dirs = "1.0"

[features]
v0_21 = []
v0_26 = ["v0_21"]
default = ["v0_26"]


[[test]]
name = "main"
harness = false