-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (43 loc) · 1.18 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
[package]
name = "lokai"
authors = ["Lukasz Kielar <[email protected]>"]
version = "0.1.0"
edition = "2021"
license = "MIT"
publish = false
# TODO: use native tls crate
[dependencies]
askama = "0.12"
askama_axum = "0.4"
axum = { version = "0.7", features = ["macros", "tokio", "ws"] }
chrono = { version = "0.4", features = ["serde"] }
console_error_panic_hook = "0.1"
derive_more = { version = "1", features = ["from"] }
futures-util = { version = "0.3" }
http = "1"
once_cell = "1.19"
reqwest = { version = "0.12", default-features = false, features = [
"json",
"stream",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = { version = "0.8", default-features = false, features = [
"chrono",
"macros",
"migrate",
"runtime-tokio",
"sqlite",
"uuid",
] }
tokio = { version = "1", features = ["rt-multi-thread"] }
tower-http = { version = "0.6", features = ["fs"] }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["std", "env-filter"] }
url = { version = "2", features = ["serde"] }
uuid = { version = "1.10", features = ["v4", "serde"] }
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true