-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathCargo.toml
38 lines (35 loc) · 968 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]
build = "src/build.rs"
edition = "2021"
name = "naive"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.44"
askama = "0.11.0"
axum = { version = "0.4.4", features = ["headers", "ws"] }
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.6.1"
diesel = { version = "2.0.0-rc.0", features = [
"bigdecimal",
"chrono",
"r2d2",
"sqlite",
] }
diesel_migrations = "2.0.0-rc.0"
dotenv = "0.15.0"
headers = "0.3.5"
lazy_static = "1.4.0"
r-cache = "0.4.4"
regex = "1.5.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2.2.2"
[dependencies.libsqlite3-sys]
# https://github.com/diesel-rs/diesel/issues/2943
features = ["bundled"]
version = ">=0.17.2, <0.25.0"