-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (37 loc) · 923 Bytes
/
Cargo.toml
File metadata and controls
50 lines (37 loc) · 923 Bytes
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
[package]
name = "bap"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "bap"
[dependencies]
rand = { version = "0.8.5", features = [] }
anyhow = "1.0"
mimalloc = { version = "*", default-features = false }
pheap = "*"
ahash = { version = "0.8.6", features = ["no-rng"] }
bincode = { version = "2.0", features = ["serde"] }
# For excutable binary to use.
clap = { version = "4.4", features = ["derive"] }
serde = { version = "1.0.202", features = ["derive"] }
serde_json = "1.0.120"
get-size = "0.1.4"
[[test]]
name = "vfip"
[[test]]
name = "index_static_search"
[[test]]
name = "index_continuous_query"
[[test]]
name = "average_weight"
[profile.release-with-debug]
inherits = "release"
debug = true
[profile.release]
debug = true
lto = true
opt-level = 3
codegen-units = 1
panic = 'abort'
overflow-checks = false