-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (68 loc) · 1.65 KB
/
Cargo.toml
File metadata and controls
76 lines (68 loc) · 1.65 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
[package]
name = "daylight"
version = "0.1.0"
edition = "2024"
build = "build.rs"
[lib]
name = "daylight"
path = "lib/lib.rs"
[[bin]]
name = "daylight-server"
path = "bin/server.rs"
[[bin]]
name = "daylight-client"
path = "bin/client.rs"
[[bin]]
name = "daylight-stress-test"
path = "bin/stress-test.rs"
[dependencies]
anyhow = "1"
axum = "0.7"
axum-tracing-opentelemetry = "0.32"
bytes = "1"
clap = { version = "4", features = ["derive", "env"] }
flatbuffers = "24.3.25"
futures = "0.3"
glob = "0.3"
http = "1.3"
init-tracing-opentelemetry = { version = "0.34", features = ["otlp", "tracing_subscriber_ext"] }
opentelemetry = "0.31"
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"] }
reqwest = "0.12"
thiserror = "2.0.17"
tokio = { version = "1", features = ["net", "rt-multi-thread", "macros", "time", "signal"]}
tower-http = { version = "^0.6", features = [
"catch-panic",
"compression-br",
"compression-gzip",
"decompression-br",
"decompression-gzip",
"metrics",
"trace",
"request-id",
"util",
] }
tower = "^0.5"
tracing = "0.1"
tracing-opentelemetry = "0.32"
tracing-opentelemetry-instrumentation-sdk = "0.32"
tree-sitter = "0.25.10"
tree-sitter-agda = "1.3.0"
tree-sitter-bash = "0.25.1"
tree-sitter-c = "0.24.1"
tree-sitter-cpp = "0.23.4"
tree-sitter-css = "0.25.0"
tree-sitter-go = "0.25.0"
tree-sitter-html = "0.23.2"
tree-sitter-java = "0.23.5"
tree-sitter-javascript = "0.25.0"
tree-sitter-json = "0.24.8"
tree-sitter-python = "0.25.0"
tree-sitter-ruby = "0.23.1"
tree-sitter-rust = "0.24.0"
tree-sitter-typescript = "0.23.2"
tree-sitter-highlight = "0.25.10"
[dev-dependencies]
quickcheck = "1"
quickcheck_macros = "1"
[build-dependencies]