-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
78 lines (67 loc) · 2.09 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "range-set-blaze"
version = "0.1.16"
edition = "2021"
description = "Integer sets as fast, sorted, integer ranges with full set operations"
repository = "https://github.com/CarlKCarlK/range-set-blaze"
readme = "README.md"
documentation = "https://docs.rs/range-set-blaze/latest/range-set-blaze/"
authors = ["Carl Kadie"]
license = "MIT OR Apache-2.0"
keywords = ["set", "range", "data-structures", "no_std", "wasm"]
categories = ["data-structures", "no-std", "wasm"]
homepage = "https://github.com/CarlKCarlK/range-set-blaze"
resolver = "2"
exclude = ["docs/**/*"]
[workspace]
members = [
".",
"tests_common",
"tests/wasm-demo",
"tests/embedded",
"examples/simd/simd_hello",
"examples/simd/is_consecutive0",
"examples/simd/is_consecutive1",
"examples/simd/is_consecutive2",
]
[lib]
[features]
default = ["std"]
std = ["itertools/use_std", "num-traits/std", "num-integer/std"]
alloc = ["itertools/use_alloc", "num-traits", "num-integer"]
# rog_experimental would have been better
rog-experimental = []
from_slice = []
[dependencies]
itertools = { version = "0.12.0", optional = true, default-features = false }
num-integer = { version = "0.1.44", optional = true, default-features = false }
num-traits = { version = "0.2.15", optional = true, default-features = false }
gen_ops = "0.4.0"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tests_common = { path = "tests_common" }
syntactic-for = "0.1.1"
criterion = { version = "0.5", features = ["html_reports"] }
trybuild = "1.0.53"
thousands = "0.2.0"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
rangemap = "1.3.0"
range-collections = "0.4.0"
range-set = "0.0.10"
glob = "0.3.0"
rand = "0.8.4"
roaring = "0.10.1"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3.37"
syntactic-for = "0.1.1"
# Declare a benchmark called ""bench" without the standard benchmarking harness.
[[bench]]
name = "bench"
harness = false
[package.metadata.docs.rs]
all-features = true
# TODO Rule: for running profiling
# [profile.release]
# debug = true
[profile.release]
opt-level = 3 # Maximum optimization