-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (35 loc) · 1004 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
39
40
[package]
name = "auth_service"
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
env_logger = "0.10"
tokio = { version = "1", features = ["full"] }
oauth2 = "4.4"
reqwest = { version = "0.11", features = ["json"]}
jsonwebtoken = "8.3"
log = "0.4"
const_format = "0.2"
sha2 = "0.10"
hex = "0.4"
hmac = "0.12"
rusqlite = { version = "0.29", features = ["functions"]}
tokio-rusqlite = "0.4"
regex = "1.8"
[dependencies.uuid]
version = "1.3"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
[dev-dependencies]
lazy_static = "1.4"
[features]
default = ["sqlcipher"]
sqlcipher = ["rusqlite/sqlcipher"]
test_windows = ["rusqlite/bundled-windows"]