-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 918 Bytes
/
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
[package]
authors = ["Sparkenstein <[email protected]>"]
edition = "2021"
name = "binrs"
version = "1.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
askama = { version = "0.12", default-features = false, features = [
"with-axum",
] }
axum = { version = "0.6", features = ["http2", "headers", "macros"] }
nanoid = "0.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.26", features = ["full"] }
tracing = "0.1"
tower-http = { version = "0.4.0", features = ["fs", "trace", "cors"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
askama_axum = "0.3.0"
futures = "0.3.28"
rust-embed = { version = "6", features = ["axum", "mime_guess"] }
mime_guess = "2"
[profile.release]
codegen-units = 1
lto = true
opt-level = 'z' # Optimize for size.
panic = 'abort'
strip = true