-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (36 loc) · 969 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
33
34
35
36
37
38
[package]
name = "kalozino"
version = "0.1.0"
edition = "2021"
[dependencies]
dotenvy = "0.15.7"
poise = { version = "0.6", features = ["cache", "chrono", "handle_panics"] }
tokio = { version = "1", features = ["tracing", "full"] }
serde = { version = "1.0", features = ["derive", "alloc"] }
chrono = { version = "0.4", features = ["serde"] }
rand = { version = "0.8" }
ormlite = { version = "0.18", features = [
"default-postgres",
"chrono",
"uuid",
] }
uuid = { version = "1.6", features = ["serde"] }
serde_json = { version = "1.0", features = ["alloc"] }
tracing = { version = "0.1", features = [
"async-await",
"log",
"release_max_level_info",
"max_level_debug",
] }
tracing-subscriber = { version = "0.3", features = [
"chrono",
"env-filter",
"tracing",
"serde",
"tracing-serde",
] }
tracing-appender = "0.2"
anyhow = { version = "1.0", features = ["backtrace"] }
futures = "0.3.30"
[profile.release]
strip = true