-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
26 lines (23 loc) · 946 Bytes
/
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
[package]
name = "graphite_minecraft"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
description = "Library for crafting high-performance Minecraft servers"
homepage = "https://github.com/Moulberry/Graphite"
repository = "https://github.com/Moulberry/Graphite"
readme = "README.md"
[dependencies]
graphite_server = { path = "crates/graphite_server", version = "0.1.0" }
graphite_concierge = { path = "crates/graphite_concierge", version = "0.1.0" }
graphite_net = { path = "crates/graphite_net", version = "0.1.0" }
graphite_mc_protocol = { path = "crates/graphite_mc_protocol", version = "0.1.0" }
graphite_mc_constants = { path = "crates/graphite_mc_constants", version = "0.1.0" }
# These two can be behind feature flag
graphite_command = { path = "crates/graphite_command", version = "0.1.0" }
graphite_magma = { path = "crates/graphite_magma", version = "0.1.0" }
[workspace]
members = [
"crates/*",
"example_server"
]