-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (24 loc) · 938 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
[package]
name = "liberation"
version = "0.2.8"
authors = ["Yoann Kehler <[email protected]>", "Richard Z. <[email protected]>", "HFranzen"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
thiserror = "1.0"
actix-web = "4"
tokio = { version = "1", features = ["macros"] }
futures = "0.3"
# in version 7 handling the key is super anoying, because it has no state.
jsonwebtoken = "8"
serde = { version = "1.0", features = ["derive"] }
diesel = { version = "1.4", features = ["mysql", "r2d2"] }
diesel_migrations = "1.4"
base64 = "0.13.0"
oauth2 = { version = "4", features = ["reqwest"] }
reqwest = { version = "0.11", features = ["json"]}
# Binary only dependencies. Cargo doesn't support this at the moment.
clap = { version = "3", features = ["derive", "cargo"] }
config = { version="0.11.0", features = ["toml"]}
env_logger = "0.9"