-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (45 loc) · 1.02 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
[package]
name = "a-tree"
repository = "https://github.com/AntoineGagne/a-tree"
description = "A dynamic data structure for efficiently indexing arbitrary boolean expressions"
authors = ["Antoine Gagné <[email protected]>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
version = "0.4.1"
edition = "2021"
build = "build.rs"
include = [
"/benches/**",
"/src/**",
"/examples/**",
"/build.rs",
"/Cargo.toml",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md"
]
categories = ["data-structures"]
keywords = [
"boolean-expression",
"data-structure",
"data-structures",
"event-filtering",
"tree"
]
[[bench]]
name = "benchmarks"
harness = false
[build-dependencies]
lalrpop = "0.22.0"
[dependencies]
itertools = "0.14"
lalrpop-util = { version = "0.22.0", features = ["lexer", "unicode"] }
logos = "0.15"
rust_decimal = "1.36"
slab = "0.4"
thiserror = "2.0"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
serde = "1.0"
serde_json = "1.0"
proptest = "1.6"