-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (36 loc) · 889 Bytes
/
Cargo.toml
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
38
39
40
41
42
43
44
[package]
name = "nimikirsu"
version = "0.0.1"
authors = ["Ossi Herrala <[email protected]>"]
homepage = "https://github.com/oherrala/nimikirsu"
repository = "https://github.com/oherrala/nimikirsu"
license = "MIT"
readme = "README.md"
[badges]
maintenance = { status = "experimental" }
[[bin]]
name = "nimikirsu"
path = "src/main.rs"
[lib]
name = "kirsulib"
path = "lib/lib.rs"
[profile.release]
lto = true
[features]
default = []
collect = [ "sha1" ]
[dependencies]
chrono = { version = "0.4", default-features = false }
libc = "0.2"
log = "0.4"
nix = "0.7"
privdrop = "0.2"
sha1 = { version = "0.6", optional = true }
stderrlog = "0.4"
structopt = "0.2"
untrusted = "0.6"
untrustended = "0.2"
[build-dependencies]
bindgen = { version = "0.37", default_features = false }
[patch.crates-io]
untrusted = { git = "https://github.com/oherrala/untrusted", branch = "clone-n-copy-mark" }