-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 861 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 861 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
33
34
35
[package]
name = "pubsub_server"
version = "0.1.0"
edition = "2021"
[features]
default = ["parallel-emit"]
parallel-emit = []
sequential-emit = []
[dependencies]
axum = { version = "0.8.6", features = ["ws"] }
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.8.6", features = ["runtime-tokio-native-tls", "sqlite"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
tower-http = { version = "0.6.6", features = ["fs", "cors"] }
uuid = { version = "1.0", features = ["v4", "fast-rng"] }
futures-util = "0.3"
rust-embed = { version = "8.5", features = ["include-exclude"] }
mime_guess = "2.0"
socketioxide = "0.17.2"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
overflow-checks = false
[profile.release.package."*"]
opt-level = 3