-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 1.32 KB
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 1.32 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
32
33
34
35
36
37
38
39
[package]
name = "minecloud-node"
version = "0.1.0"
edition = "2024"
[dependencies]
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde-aux = "4.7.0"
tokio = { version = "1.49.0", features = ["full"] }
async-trait = "0.1.89"
delegate = "0.13.5"
colored = "3.1.1"
rand = "0.10.0-rc.8"
actix-web = "4.12.1"
#actix-cors = "0.7.1"
actix-ws = "0.4.0"
sysinfo = "0.38.0"
chrono = { version = "0.4.43", features = ["serde"] }
uuid = { version = "1.20.0", features = ["v4", "serde"] }
bx = { git = "https://github.com/ThePhoenixPixel/bx.git", version = "1.2.0"}
mysql = "27.0.0"
once_cell = "1.21.3"
strum = "0.28.0"
strum_macros = "0.28.0"
database_manager = { git = "https://github.com/ThePhoenixPixel/database_manager.git", branch = "master" }
reqwest = { version = "0.13.2", features = ["json"] }
futures-util = "0.3.32"
[features]
default = ["mysql"]
# Database driver fetures
sqlite = ["database_manager/derive", "database_manager/sqlite"]
mysql = ["database_manager/derive", "database_manager/mysql"]
# Rest Api
rest-api = []