-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 776 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 776 Bytes
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
[package]
name = "openworkers-logs"
version = "0.1.5"
edition = "2024"
[features]
websocket = ["dep:actix-ws"]
[dependencies]
actix-web = "4.12.1"
actix-web-lab = "0.24.3"
actix-ws = { version = "0.3", optional = true }
tokio = { version = "1.43.0", features = ["full"] }
sqlx = { version = "0.8.3", features = ["runtime-tokio", "postgres", "uuid", "chrono"] }
async-nats = "0.45.0"
futures = "0.3"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.137"
log = "0.4.21"
env_logger = "0.11.6"
base64 = "0.22.1"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["serde", "v4"] }
async-stream = "0.3"
dotenvy = "0.15.7"
[profile.release]
strip = true
opt-level = "z"
incremental = true
codegen-units = 1
lto = true