-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 1021 Bytes
/
Cargo.toml
File metadata and controls
36 lines (34 loc) · 1021 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
[package]
name = "this_api_of_mine"
version = "0.2.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-governor = "0.10"
actix-web = "4.13"
base64 = "0.22"
cached = { version = "0.56", features = ["async"] }
const_base = "0.2"
chacha20poly1305 = { version = "0.10", features = ["std"] }
confy = "2.0"
deadpool-postgres = "0.14"
deku = "0.20"
env_logger = "0.11"
futures = "0.3"
jsonwebtoken = "10.2"
log = "0.4"
octocrab = "0.49"
rand_core = "0.6.4"
reqwest = "0.13"
reqwest-middleware = "0.5"
reqwest-retry = "0.9"
rustls = "0.23"
secure-string = { version = "0.3", features = ["serde"] }
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = { version = "3.9", features = ["base64", "time_0_3"] }
tokio = "1.39"
tokio-postgres = { version = "0.7", features = ["with-serde_json-1", "with-uuid-1"] }
url = "2.5"
uuid = { version = "1.20", features = ["v4", "macro-diagnostics", "serde"] }