-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (41 loc) · 1.1 KB
/
Cargo.toml
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
40
41
42
43
44
45
46
47
[package]
name = "rustaria"
version = "0.1.0"
authors = ["leocth <[email protected]>", "alphaqu <[email protected]>"]
description = "A Terraria rework in Rust"
repository = "https://github.com/rustaria/rustaria/"
license = "GPL-3.0-or-later"
edition = "2021"
rust-version = "1.60"
[dependencies]
serde = { version = "1.0.133", features = ["derive"] }
type-map = "0.5.0"
rayon = "1.5.1"
crossbeam = "0.8.1"
mlua = { git = "https://github.com/alphaqu/mlua", branch = "alphacurseness", features = ["serialize", "send"] }
hecs = { version = "0.7.6", features = ["serde"] }
thiserror = "1.0.31"
frogelua = { path = "./libs/frogelua" }
macro-module = { path = "./libs/macro-module" }
rsa-core = { path = "libs/rsa-core" }
rsa-network = { path = "libs/rsa-network" }
[workspace]
members = [
"libs/frogelua",
"libs/apollo",
"libs/macro-module",
"libs/rsa-network",
"libs/rsa-core",
"libs/rsa-gen",
"libs/rsa-input",
"libs/rsa-item",
"libs/rsac-audio",
"libs/rsac-graphic",
"runtime/client",
]
[features]
client = []
[profile.dev]
opt-level = 1
[profile.test]
opt-level = 1