-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 1.39 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
[package]
name = "pointercrate-example"
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]
dotenv = "0.15.0"
maud = "0.27.0"
pointercrate-core = { version = "0.1.0", path = "../pointercrate-core" }
pointercrate-core-api = { version = "0.1.0", path = "../pointercrate-core-api" }
pointercrate-core-pages = { version = "0.1.0", path = "../pointercrate-core-pages" }
pointercrate-core-macros = { version = "0.1.0", path = "../pointercrate-core-macros" }
pointercrate-demonlist = { version = "0.1.0", path = "../pointercrate-demonlist" }
pointercrate-demonlist-api = { version = "0.1.0", path = "../pointercrate-demonlist-api", features = ["geolocation"] }
pointercrate-demonlist-pages = { version = "0.1.0", path = "../pointercrate-demonlist-pages", features = ["geolocation"] }
pointercrate-user = { version = "0.1.0", path = "../pointercrate-user" }
pointercrate-user-api = { version = "0.1.0", path = "../pointercrate-user-api", features = ["legacy_accounts"] }
pointercrate-user-pages = { version = "0.1.0", path = "../pointercrate-user-pages", features = ["legacy_accounts"] }
rocket = { workspace = true }
unic-langid = { version = "0.9.5", features = ["macros"] }
reqwest = "0.13.1"
serde = "1.0.228"
[features]
oauth2 = ["pointercrate-user-api/oauth2", "pointercrate-user-pages/oauth2"]