graphite_minecraft 0.1.0

Library for crafting high-performance Minecraft servers
[package]
name = "graphite_minecraft"
version = "0.1.0"
edition = "2021"
license-file = "LICENSE"
description = "Library for crafting high-performance Minecraft servers"
homepage = "https://github.com/Moulberry/Graphite"
repository = "https://github.com/Moulberry/Graphite"
readme = "README.md"

exclude = [
    "example_server/*",
]

[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"
]