Skip to content

Commit 491a9cc

Browse files
authored
Merge pull request #9 from skyser2003/with_axum
actix제거, 의존성 업데이트, lazy_static 제거
2 parents 5cc8637 + a7b160e commit 491a9cc

File tree

7 files changed

+473
-564
lines changed

7 files changed

+473
-564
lines changed

Cargo.toml

+19-17
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,33 @@ edition = "2018"
88

99
[dependencies]
1010
regex = "1"
11-
url = "1"
11+
url = "2"
1212
anyhow = "1.0"
1313
thiserror = "1.0"
14+
async-trait = "0.1"
15+
bytes = "*"
16+
once_cell = "1"
1417

15-
reqwest = { version = "0.10", features = ["json", "rustls-tls"], default-features = false }
16-
tokio = { version = "0.2.0", features = ["full"] }
18+
reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false }
19+
tokio = { version = "1", features = ["full"] }
1720

18-
actix-web = { version="2.0.0", features=["rustls"] }
19-
actix-rt = "1.0.0"
20-
actix = "0.9"
21+
axum = { version = "0.4", features = ["headers"] }
22+
tower-http = { version = "0.2", features = ["auth"] }
2123

22-
rustls = "0.16"
24+
rustls = "0.20"
2325

24-
serde = "=1.0.104"
25-
serde_json = "=1.0.0"
26-
serde_derive = "1.0"
26+
serde = { version = "1.0", features = ["derive"] }
27+
serde_json = "1.0"
2728

28-
ctrlc = "3.0"
29-
hmac = "0.7.1"
30-
sha2 = "0.8.1"
29+
hmac = "0.12"
30+
sha2 = "0.10"
3131

3232
futures = "0.3"
33-
lazy_static = "1.4.0"
34-
rand = "0.7.3"
35-
redis = "0.16.0"
33+
rand = "0.8"
34+
redis = "0.21"
3635

3736
log = "0.4.11"
38-
env_logger = "0.8.1"
37+
env_logger = "0.9"
38+
39+
[features]
40+
check-req = []

0 commit comments

Comments
 (0)