-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (31 loc) · 890 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
[package]
name = "density-rs"
version = "0.1.0"
authors = ["Crypto-Spartan <accounts@cryptospartan.net>", "k0dai <guillaume.voirin@gmail.com>"]
edition = "2021"
#rust-version = "1.56" commented out due to: https://github.com/rust-lang/cargo/issues/9930
description = "Rust bindings to density compression library"
readme = "README.md"
homepage = "https://github.com/Crypto-Spartan/density-rs"
repository = "https://github.com/Crypto-Spartan/density-rs"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rayon = "1.5.1"
rand = "0.8.4"
[dev-dependencies]
criterion = "0.3"
rand = "0.8.4"
[build-dependencies]
cc = "1.0.72"
bindgen = "0.59.2"
rustc_version = "0.4.0"
[[bench]]
name = "my_benchmark"
harness = false
[profile.release]
lto = "fat"
codegen-units=1
[profile.bench]
lto = "fat"
codegen-units=1