forked from stadust/pointercrate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 886 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 886 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
[workspace]
members = [
"pointercrate-core",
"pointercrate-core-api",
"pointercrate-demonlist",
"pointercrate-demonlist-api",
"pointercrate-user",
"pointercrate-user-api",
"pointercrate-integrate",
# Crate only containing integration tests
"pointercrate-test",
# Crate containing an example setup for a custom list
"pointercrate-example"
]
resolver = "2"
[workspace.package]
authors = ["stadust"]
description = "Libraries for creating pointercrate-like demonlist websites"
homepage = "https://pointercrate.com"
edition = "2021"
repository = "https://github.com/stadust/pointercrate"
[workspace.dependencies]
sqlx = { version = "0.8", default-features = false, features = [ "runtime-tokio-native-tls", "macros", "postgres", "chrono", "migrate" ] }
rocket = { git = "https://github.com/rwf2/Rocket", branch = "master", features = ["json"] }