-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 1.07 KB
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
[package]
name = "pointercrate-demonlist-api"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = { workspace = true }
pointercrate-demonlist = {path = "../pointercrate-demonlist"}
pointercrate-demonlist-pages = {path = "../pointercrate-demonlist-pages"}
pointercrate-core = {path = "../pointercrate-core"}
pointercrate-core-api = {path = "../pointercrate-core-api"}
pointercrate-core-pages = {path = "../pointercrate-core-pages"}
pointercrate-core-macros = {path = "../pointercrate-core-macros"}
pointercrate-user = {path = "../pointercrate-user"}
pointercrate-user-api = {path = "../pointercrate-user-api"}
pointercrate-integrate = {path = "../pointercrate-integrate"}
sqlx = { workspace = true }
serde_json = "1.0.149"
log = "0.4.29"
nonzero_ext = "0.3.0"
reqwest = {version = "0.13.*", features = ["json"]}
chrono = "0.4.44"
serde = "1.0.228"
governor = "0.10.4"
rand = "0.10.0"
[features]
geolocation = ["pointercrate-demonlist-pages/geolocation"]