[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.bincode]
version = "1.3"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.crossterm]
version = "0.28"
[dependencies.figlet-rs]
version = "0.1"
[dependencies.hecs]
version = "0.10"
[dependencies.issun-core]
version = "0.10.0"
[dependencies.issun-macros]
version = "0.10.0"
[dependencies.quinn]
optional = true
version = "0.11"
[dependencies.rand]
version = "0.8"
[dependencies.ratatui]
version = "0.28"
[dependencies.rayon]
version = "1.8"
[dependencies.ron]
version = "0.8"
[dependencies.rustls]
features = ["ring"]
optional = true
version = "0.23"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["full"]
version = "1.35"
[dependencies.uuid]
features = ["v4", "serde"]
version = "1.6"
[dev-dependencies.tempfile]
version = "3.8"
[[example]]
name = "drive_macro_demo"
path = "examples/drive_macro_demo.rs"
[[example]]
name = "hello_issun"
path = "examples/hello_issun.rs"
[features]
default = ["ui", "storage"]
full = ["ui", "storage", "network"]
network = ["quinn", "rustls"]
storage = []
tty_tests = []
ui = []
[lib]
name = "issun"
path = "src/lib.rs"
[package]
authors = ["Yutaka Nishimura <ytk.nishimura@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["game-engines", "command-line-interface"]
description = "A mini game engine for logic-focused games - Build games in ISSUN (一寸) of time"
documentation = "https://docs.rs/issun"
edition = "2021"
homepage = "https://github.com/ynishi/issun"
keywords = ["game", "engine", "roguelike", "tui", "mini-game"]
license = "MIT OR Apache-2.0"
name = "issun"
readme = false
repository = "https://github.com/ynishi/issun"
version = "0.10.0"
[[test]]
name = "auto_pump_test"
path = "tests/auto_pump_test.rs"
[[test]]
name = "culture_plugin_integration"
path = "tests/culture_plugin_integration.rs"
[[test]]
name = "event_bus_integration"
path = "tests/event_bus_integration.rs"
[[test]]
name = "event_replay_integration"
path = "tests/event_replay_integration.rs"
[[test]]
name = "event_tracer_integration"
path = "tests/event_tracer_integration.rs"
[[test]]
name = "mod_publish_event_test"
path = "tests/mod_publish_event_test.rs"
[[test]]
name = "mod_subscribe_event_test"
path = "tests/mod_subscribe_event_test.rs"
[[test]]
name = "mod_system_e2e"
path = "tests/mod_system_e2e.rs"
[[test]]
name = "network_integration"
path = "tests/network_integration.rs"
[[test]]
name = "org_suite_integration"
path = "tests/org_suite_integration.rs"
[[test]]
name = "plugin_derive_test"
path = "tests/plugin_derive_test.rs"
[[test]]
name = "plugin_macro_test"
path = "tests/plugin_macro_test.rs"
[[test]]
name = "worldmap_basic"
path = "tests/worldmap_basic.rs"