-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
87 lines (82 loc) · 2.59 KB
/
Copy pathCargo.toml
File metadata and controls
87 lines (82 loc) · 2.59 KB
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
79
80
81
82
83
84
85
86
87
[package]
name = "saluki-components"
version = "0.1.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
[lints]
workspace = true
[features]
default = []
[dependencies]
async-trait = { workspace = true }
axum = { workspace = true }
base64 = { workspace = true, features = ["std"] }
bytes = { workspace = true }
bytesize = { workspace = true }
chrono = { workspace = true }
datadog-protos = { workspace = true }
ddsketch = { workspace = true }
faster-hex = { workspace = true }
float-cmp = { workspace = true, features = ["ratio"] }
fnv = { workspace = true }
foldhash = { workspace = true }
futures = { workspace = true }
hashbrown = { workspace = true }
headers = { workspace = true }
http = { workspace = true }
http-body = { workspace = true }
http-body-util = { workspace = true }
http-serde-ext = { workspace = true }
hyper = { workspace = true, features = ["client"] }
hyper-http-proxy = { workspace = true }
lru-slab = { workspace = true }
memory-accounting = { workspace = true }
metrics = { workspace = true }
opentelemetry-semantic-conventions = { workspace = true, features = ["semconv_experimental"] }
otlp-protos = { workspace = true }
piecemeal = { workspace = true }
pin-project = { workspace = true }
prost = { workspace = true }
protobuf = { workspace = true }
rand = { workspace = true, features = ["std", "std_rng"] }
regex = { workspace = true, features = ["unicode-perl"] }
rmp-serde = { workspace = true }
saluki-api = { workspace = true }
saluki-common = { workspace = true }
saluki-config = { workspace = true }
saluki-context = { workspace = true }
saluki-core = { workspace = true }
saluki-env = { workspace = true }
saluki-error = { workspace = true }
saluki-io = { workspace = true }
saluki-metadata = { workspace = true }
saluki-metrics = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_with = { workspace = true, features = ["alloc"] }
serde_yaml = { workspace = true }
smallvec = { workspace = true }
snafu = { workspace = true }
stringtheory = { workspace = true }
tokio = { workspace = true, features = [
"io-util",
"macros",
"net",
"rt",
"rt-multi-thread",
"signal",
"sync",
] }
tonic = { workspace = true, features = ["router", "server"] }
tower = { workspace = true, features = ["limit", "retry", "timeout", "util"] }
tracing = { workspace = true }
url = { workspace = true }
[dev-dependencies]
criterion = { workspace = true }
proptest = { workspace = true }
saluki-metrics = { workspace = true, features = ["test"] }
test-strategy = { workspace = true }
[[bench]]
name = "tag_filterlist"
harness = false