-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (39 loc) · 1.23 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
[package]
name = "medoxido"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.15.0", features = ["macros", "rt-multi-thread"] }
tower = "0.4.11"
tower-http = { version = "0.4.0", features = ["trace"] }
# Serde
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"
# Axum
axum = { version = "0.6.18", features = ["tower-log", "http2"] }
axum-extra = { version = "0.7.4", features = ["form"] }
surrealdb = { version = "1.0.0-beta.10" }
# The `clap` beta gives us a much nicer way to define configuration parameters for our application.
clap = { version = "4.0.0", features = ["derive", "env"] }
# State of the art password hashing.
argon2 = "0.5.0"
# Utilities
anyhow = "1.0.44"
thiserror = "1.0.30"
jwt = "0.16.0"
hmac = "0.12.1"
sha2 = "0.10.6"
# time = { version = "0.3.0", features = ["formatting"] }
# chrono = { version = "0.4.26", features = ["serde"] }
uuid = { version = "1.3.3", features = ["serde", "fast-rng"] }
dotenvy = "0.15.7"
env_logger = "0.10.0"
log = "0.4.14"
cargo-llvm-cov = "0.5.20"
rand = "0.8.4"
async-trait = "0.1.51"
time = "0.3"
[dev-dependencies]
httpc-test = "0.1.1"
itertools = "0.10.1"