-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
68 lines (60 loc) · 1.46 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
[package]
name = "hndr"
publish = false
version = "0.1.0"
edition = "2021"
[dependencies]
ahash = { version = "0.8.11", features = ["serde"] }
arrow = "51.0.0"
axum = { version = "0.7.5", features = ["http2"] }
axum-msgpack = "0.4.0"
base64 = "0.22.0"
cadence = "1.3.0"
chrono = { version = "0.4.37", features = ["serde"] }
dashmap = "5.5.3"
db-rpc-client-rs = "0.1.1"
futures = "0.3.30"
http = "1.1.0"
itertools = "0.12.1"
once_cell = "1.19.0"
parking_lot = "0.12.1"
queued-client-rs = "0.1.1"
rand = "0.8.5"
regex = "1.10.4"
reqwest = { version = "0.12.3", features = ["stream"] }
rmp-serde = "1.1.2"
rmpv = { version = "1.0.1", features = ["with-serde"] }
scraper = { version = "0.19.0", features = ["atomic"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_bytes = "0.11.14"
serde_json = "1.0.115"
serde_with = "3.7.0"
service-toolkit = "0.4.0"
sysinfo = "0.30.10"
tokio = { version = "1.37.0", features = ["full"] }
tower-http = { version = "0.5.2", features = ["cors"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
[lib]
name = "common"
path = "common/lib.rs"
[[bin]]
name = "build-data"
path = "build-data/main.rs"
[[bin]]
name = "build-nn-data"
path = "build-nn-data/main.rs"
[[bin]]
name = "crawler"
path = "crawler/main.rs"
[[bin]]
name = "edge"
path = "edge/main.rs"
[profile.release]
codegen-units = 1
debug = true
lto = true
opt-level = 3
[profile.release.package."*"]
codegen-units = 1
opt-level = 3