-
-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (30 loc) · 728 Bytes
/
Cargo.toml
File metadata and controls
39 lines (30 loc) · 728 Bytes
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
[package]
name = "atcoder-problems-backend"
version = "0.1.0"
authors = ["kenkoooo <kenkou.n@gmail.com>"]
edition = "2021"
publish = false
[dependencies]
# Logging
log = "0.4"
fern = "0.6.2"
rand = "0.8.5"
chrono = "0.4"
rust-s3 = { version = "0.33", features = ["no-verify-ssl"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# SQL
sql-client = { path = "./sql-client" }
# Scraping
atcoder-client = { path = "./atcoder-client" }
# Web framework
actix-web = "4.4.0"
actix-service = "2.0.2"
reqwest = { version = "0.11", features = ["json"] }
async-trait = "0.1"
anyhow = "1.0"
futures-util = "0.3.29"
[dev-dependencies]
httpmock = "0.6.8"
[workspace]
members = ["sql-client", "atcoder-client"]