-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (51 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
60 lines (51 loc) · 1.16 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
[workspace]
members = ["honeybee", "mayfly", "bulb", "rendzina", "resin", "resources", "pollinator"]
default-members = ["honeybee", "mayfly"]
resolver = "2"
[workspace.package]
version = "5.83.0"
edition = "2024"
[workspace.dependencies]
argh = "0.1"
bb8 = "0.9"
bb8-postgres = "0.9"
chrono = "0.4"
env_logger = { version = "0.11", default-features = false }
futures = { version = "0.3", default-features = false }
gift = "0.11"
http = "1"
jiff = "0.2.16"
log = "0.4"
mag = "0.6"
ntcip = "0.14.1"
pix = "0.14"
serde_json = "1"
thiserror = "2"
tokio-postgres = "0.7"
tokio-tungstenite = "0.28"
tungstenite = "0.28"
whoami = "2"
[workspace.dependencies.axum]
version = "0.8"
features = ["http2"]
[workspace.dependencies.serde]
version = "1"
features = ["derive"]
[workspace.dependencies.tokio]
version = "1.48.0"
default-features = false
features = ["fs", "io-util", "macros", "net", "rt-multi-thread", "time"]
[workspace.dependencies.tokio-stream]
version = "0.1"
features = ["time"]
[workspace.dependencies.cidr]
version = "0.3"
features = ["serde"]
[patch.crates-io]
[profile.web]
inherits = "release"
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"