forked from cantoblanco/boringbay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (23 loc) · 793 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
[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 = "0.4"
diesel = {version = "^2.0.0", features = ["sqlite", "chrono", "r2d2"], git = "https://github.com/diesel-rs/diesel"}
diesel_migrations = {version = "^2.0.0", git = "https://github.com/diesel-rs/diesel/"}
dotenv = "0.15.0"
headers = "0.3.5"
lazy_static = "1.4.0"
regex = "1.5.4"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
tokio = {version = "1.0", features = ["full"]}
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["env-filter"]}
url = "2.2.2"