-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (28 loc) · 866 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
[package]
name = "mateserver"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.4.8"
tokio = { version = "1.17.0", features = ["full"] }
chrono = { version = "0.4.19", features = ["serde"] }
toml = "0.5.8"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
eyre = "0.6.7"
thiserror = "1.0.30"
tracing = "0.1.31"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
tower-http = { version = "0.2.3", features = ["trace"] }
sqlx = { version = "0.5.11", features = [
"runtime-tokio-rustls",
"sqlite",
"migrate",
] }
[dependencies.sea-orm]
version = "0.6.0"
default-features = false
features = ["sqlx-sqlite", "runtime-tokio-rustls", "macros", "with-chrono"]
[dev-dependencies]
pretty_assertions = "1.1.0"