-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (40 loc) · 986 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
41
42
43
[package]
name = "okkey-api"
version = "0.1.0"
authors = ["23prime <[email protected]>"]
edition = "2021"
rust-version = "1.66.1"
[dependencies]
actix-cors = "0.6.1"
actix-files = "0.6.0"
actix-rt = "2.7.0"
actix-session = { version = "0.6.2", features = ["cookie-session"] }
actix-web = { version = "4.0.1", features = ["rustls"] }
actix-web-httpauth = "0.6.0"
alcoholic_jwt = "1.0.1"
awc = { version = "3.0.0", features = ["rustls"] }
base64 = "0.13.0"
chrono = { version = "0.4.19", features = ["serde"] }
derive_more = "0.99.17"
dotenv = "0.15.0"
env_logger = "0.9.0"
jsonwebtoken = "8.1.0"
log = "0.4.17"
once_cell = "1.10.0"
r2d2 = "0.8.9"
rand = "0.8.5"
reqwest = "0.11.10"
scraper = "0.13.0"
sea-orm = { version = "0.9.2", features = [
"sqlx-postgres",
"runtime-actix-rustls",
"macros",
"debug-print",
] }
serde = "1.0.137"
serde_json = "1.0.81"
sha2 = "0.10.2"
entity = { path = "entity" }
migration = { path = "migration" }
[dev-dependencies]
rstest = "0.16.0"