forked from elireisman/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
46 lines (37 loc) · 881 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
45
46
[package]
name = "blackbird-core"
version = "0.10.0"
authors = ["Greg Orzell <[email protected]>", "Vicent Marti <[email protected]>"]
edition = "2021"
[lib]
crate-type = ["lib", "staticlib"]
[features]
test-support = []
[dependencies]
chrono = "0.4"
dataview = "0.1.2"
fnv = "1.0.3"
hex = "0.4"
itertools = "0.10"
once_cell = "1.10"
rand = "0.8"
serde = { version = "1.0", features = [ "derive" ] }
thiserror = "> *"
clap = "3.0-rc.8"
broken = "notreal"
[dev-dependencies]
criterion = "0.3"
regex = "1.5"
regex-syntax = "0.6"
[build-dependencies]
anyhow = "1.0"
cbindgen = "0.23"
[[bench]]
name = "tolower"
path = "benches/tolower.rs"
harness = false
[package.metadata.deb]
assets = [
# There seems to be a special case for `target` where it does the right thing without having to go up the tree.
["target/release/libblackbird_core.a", "usr/local/lib/", "755"],
]