galactic-war 0.1.0

A casual game of Galactic War
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "galactic-war"
version = "0.1.0"
authors = ["Patrick Jackson <patrick@jackson.dev>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A casual game of Galactic War"
homepage = "https://galactic-war.com"
readme = "README.md"
categories = ["games"]
license = "MIT"
repository = "https://github.com/arcuru/galactic-war"

[lib]
name = "galactic_war"
path = "src/lib.rs"

[[bin]]
name = "galactic-war"
path = "src/main.rs"
required-features = ["bin"]

[dependencies.axum]
version = "0.7"
optional = true

[dependencies.indexmap]
version = "2"
features = ["serde"]

[dependencies.lazy_static]
version = "1"
optional = true

[dependencies.rand]
version = "0.8"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_yaml]
version = "0.9"
optional = true

[dependencies.tokio]
version = "1"
features = ["full"]
optional = true

[features]
bin = [
    "axum",
    "serde_yaml",
    "tokio",
    "lazy_static",
]
default = ["bin"]