[package] name = "galactic-war" version = "0.1.0" description = "A casual game of Galactic War" authors = ["Patrick Jackson "] edition = "2021" readme = "README.md" license = "MIT" repository = "https://github.com/arcuru/galactic-war" homepage = "https://galactic-war.com" categories =["games"] [dependencies] axum = { version = "0.7", optional = true } indexmap = { version = "2", features = ["serde"]} lazy_static = { version = "1", optional = true } rand = "0.8" serde = { version = "1", features = ["derive"] } serde_yaml = { version = "0.9", optional = true } tokio = { version = "1", features = ["full"], optional = true } [features] default = ["bin"] bin = ["axum", "serde_yaml", "tokio", "lazy_static"] [[bin]] name = "galactic-war" path = "src/main.rs" required-features = ["bin"]