-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
54 lines (43 loc) · 968 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
47
48
49
50
51
52
53
54
[package]
name = "compressed_map"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "'Static functions': compressed maps with the keys removed"
readme = "README.md"
repository = "https://github.com/bitwiseshiftleft/compressed_map"
categories = ["data-structures", "compression"]
include = ["/src", "/benches", "LICENSE.txt", "TODO.md", "README.md", "build.rs"]
build = "build.rs" # for cbindgen
[lib]
crate-type = ["cdylib","lib"]
bench = false
[badges]
maintenance = { status = "experimental" }
[features]
default = ["cffi"]
threading = []
cffi = []
headers = []
[dependencies]
# TODO: pin hashes
siphasher = "0.3.10"
bincode = "2.0.0-RC.1"
rand = "0.8.5"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "matrix_ops"
harness = false
[[bench]]
name = "uniform"
harness = false
[[bench]]
name = "nonuniform"
harness = false
[build-dependencies]
cbindgen = "0.21.0"
#[profile.bench]
#[profile.release]
#lto = true
#panic = "abort"