-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 682 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 682 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
[package]
name = "gulb-backend"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["macros"] }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"fmt",
] }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = { version = "1.0.127", features = ["raw_value"] }
url = "2.5.2"
vercel_runtime = "1.1.4"
octocrab = { version = "0.39.0", features = ["stream"] }
secrecy = "0.8.0"
thiserror = "1.0.63"
problem_details = "0.6.0"
http = "1.1.0"
futures = "0.3.30"
serde_urlencoded = "0.7.1"
[lib]
path = "api/lib/lib.rs"
[[bin]]
name = "user-langs-api"
path = "api/langs.rs"