-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (44 loc) · 1.1 KB
/
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
44
45
46
47
48
[package]
name = "acp_research"
version = "0.1.0"
authors = ["Noah Lewis <[email protected]>"]
edition = "2021"
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/api/main.rs"
name = "acp_research_api"
[[bin]]
path = "src/polling/main.rs"
name = "acp_research_polling"
[dependencies]
actix = "0.13.0"
actix-web = "4.3.1"
actix-web-actors = "4.2.0"
actix-web-httpauth = "0.8.0"
async-trait = "0.1.71"
bcrypt = "0.15.0"
bson = { version = "2.6.1", features = ["chrono-0_4"] }
chrono = { version = "0.4.26", features = ["serde"] }
curl = "0.4.44"
dotenv = "0.15.0"
env_logger = "0.10.0"
envy = "0.4.2"
executor = "0.8.4"
futures = "0.3.28"
futures-util = "0.3.28"
jwt-simple = "0.11.6"
log = "0.4.19"
oauth2 = "4.4.1"
reqwest = "0.11.18"
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.104"
tokio = { version = "1.29.1", features = ["full"] }
urlencoding = "2.1.3"
anyhow = "1.0.75"
diesel = { version = "2.1.1", features = ["chrono", "64-column-tables"] }
diesel-async = { version = "0.3.2", features = ["postgres", "deadpool"] }
derive_more = "0.99.17"
sha256 = "1.4.0"
base64 = "0.21.5"
opener = "0.6.1"