-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 939 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 939 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
[package]
name = "pointercrate-test"
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]
pointercrate-demonlist = {path = "../pointercrate-demonlist"}
pointercrate-demonlist-api = {path = "../pointercrate-demonlist-api"}
pointercrate-core = {path = "../pointercrate-core"}
pointercrate-core-api = {path = "../pointercrate-core-api"}
pointercrate-core-pages = {path = "../pointercrate-core-pages"}
pointercrate-user = {path = "../pointercrate-user"}
pointercrate-user-api = {path = "../pointercrate-user-api"}
pointercrate-user-pages = {path = "../pointercrate-user-pages", features = ["legacy_accounts"]}
serde = "1.0.228"
sqlx = { workspace = true }
rocket = { workspace = true }
serde_json = "1.0.148"
dotenv = "0.15.0"
serde_urlencoded = "0.7.1"
unic-langid = { version = "0.9.5", features = [ "macros" ]}