[package]
edition = "2021"
name = "flo_scene"
version = "0.2.0"
authors = ["Andrew Hunter"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Entity-messaging system for composing large programs from small programs"
readme = "README.md"
keywords = ["message-queue"]
categories = [
"concurrency",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/Logicalshift/flo_scene"
[features]
guest_programs = [
"json",
"postcard",
]
json = [
"serde_json",
"flo_scene_guest/json",
]
tokio_support = ["tokio"]
[lib]
name = "flo_scene"
path = "src/lib.rs"
[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
[[example]]
name = "input_prompt"
path = "examples/input_prompt.rs"
[[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"
[dependencies.futures]
version = "0.3"
[dependencies.futures-timer]
version = "3.0"
[dependencies.once_cell]
version = "1.18"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
optional = true
[dependencies.tokio]
version = "1.37"
features = ["rt"]
optional = true
[dev-dependencies.postcard]
version = "1.0"
[dev-dependencies.serde_json]
version = "1.0"
[target.'cfg(not(target_family = "wasm"))'.dependencies.flo_scene_guest]
version = "0.2"
features = [
"use-std",
"use-random",
]
default-features = false
[target.'cfg(not(target_family = "wasm"))'.dependencies.postcard]
version = "1.0"
features = ["use-std"]
optional = true
[target.'cfg(not(target_family = "wasm"))'.dependencies.uuid]
version = "1.0"
features = [
"v4",
"serde",
]
[target.'cfg(target_family = "wasm")'.dependencies.flo_scene_guest]
version = "0.2"
features = ["use-std"]
default-features = false
[target.'cfg(target_family = "wasm")'.dependencies.postcard]
version = "1.0"
features = ["use-std"]
optional = false
[target.'cfg(target_family = "wasm")'.dependencies.uuid]
version = "1.0"
features = ["serde"]
default-features = false