[dependencies.futures]
version = "0.3"
[dependencies.futures-timer]
version = "3.0"
[dependencies.once_cell]
version = "1.18"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
optional = true
version = "1.0"
[dependencies.tokio]
features = ["rt"]
optional = true
version = "1.37"
[dev-dependencies.postcard]
version = "1.0"
[dev-dependencies.serde_json]
version = "1.0"
[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
[[example]]
name = "input_prompt"
path = "examples/input_prompt.rs"
[features]
guest_programs = ["json", "postcard"]
json = ["serde_json", "flo_scene_guest/json"]
tokio_support = ["tokio"]
[lib]
name = "flo_scene"
path = "src/lib.rs"
[package]
authors = ["Andrew Hunter"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "data-structures"]
description = "Entity-messaging system for composing large programs from small programs"
edition = "2021"
keywords = ["message-queue"]
license = "Apache-2.0"
name = "flo_scene"
readme = "README.md"
repository = "https://github.com/Logicalshift/flo_scene"
version = "0.2.0"
[target.'cfg(not(target_family = "wasm"))'.dependencies.flo_scene_guest]
default-features = false
features = ["use-std", "use-random"]
version = "0.2"
[target.'cfg(not(target_family = "wasm"))'.dependencies.postcard]
features = ["use-std"]
optional = true
version = "1.0"
[target.'cfg(not(target_family = "wasm"))'.dependencies.uuid]
features = ["v4", "serde"]
version = "1.0"
[target.'cfg(target_family = "wasm")'.dependencies.flo_scene_guest]
default-features = false
features = ["use-std"]
version = "0.2"
[target.'cfg(target_family = "wasm")'.dependencies.postcard]
features = ["use-std"]
optional = false
version = "1.0"
[target.'cfg(target_family = "wasm")'.dependencies.uuid]
default-features = false
features = ["serde"]
version = "1.0"
[[test]]
name = "auto_start_tests"
path = "tests/auto_start_tests.rs"
[[test]]
name = "basic_tests"
path = "tests/basic_tests.rs"
[[test]]
name = "command_tests"
path = "tests/command_tests.rs"
[[test]]
name = "connection_tests"
path = "tests/connection_tests.rs"
[[test]]
name = "control_program_tests"
path = "tests/control_program_tests.rs"
[[test]]
name = "dispatcher_tests"
path = "tests/dispatcher_tests.rs"
[[test]]
name = "filter_tests"
path = "tests/filter_tests.rs"
[[test]]
name = "guest_tests"
path = "tests/guest_tests.rs"
[[test]]
name = "idle_program_tests"
path = "tests/idle_program_tests.rs"
[[test]]
name = "immediate_mode_tests"
path = "tests/immediate_mode_tests.rs"
[[test]]
name = "input_tests"
path = "tests/input_tests.rs"
[[test]]
name = "launcher_tests"
path = "tests/launcher_tests.rs"
[[test]]
name = "output_tests"
path = "tests/output_tests.rs"
[[test]]
name = "serialization_tests"
path = "tests/serialization_tests.rs"
[[test]]
name = "subprogram_id_tests"
path = "tests/subprogram_id_tests.rs"
[[test]]
name = "test_tests"
path = "tests/test_tests.rs"
[[test]]
name = "timer_tests"
path = "tests/timer_tests.rs"