-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (53 loc) · 1.4 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
[workspace.package]
version = "0.1.0"
authors = ["ccollie <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
description = "A promql execution engine"
homepage = "https://github.com/ccolle/metricsql"
repository = "https://github.com/ccolle/metricsql"
keywords = ["promql", "prometheus", "observability", "metrics"]
readme = "README.md"
[workspace]
members = [
"common",
"encoding",
"parser",
"runtime"
]
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
ahash = { version = "0.8", features = ["std", "serde"] }
byte-pool = "0.2"
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.9"
enquote = "1.1"
futures = "0.3"
gxhash = "3.4"
integer-encoding = "4.0"
itertools = "0.13"
num-traits = "0.2"
pco = "0.3"
pretty_assertions = "1.4"
rand = "0.8"
rand_distr = "0.4.3"
rayon = "1.10"
regex = "1.10"
regex-syntax = "0.8"
rs_unit = "0.0.2"
scopeguard = "1.2.0"
serde = { version = "1", features = ["derive"] }
serde_with = "3"
snafu = "0.8"
snafu-derive = "0.8"
strum = { version = "0.26", features = ["derive"] }
strum_macros = { version = "0.26" }
test-case = "3"
tinyvec = { version = "1.8", features = ["alloc", "rustc_1_61"] }
tracing = "0.1"
phf = { version = "0.11", features = ["macros"] }
thiserror = "1"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
[profile.release]
lto = "fat"