[[example]]
name = "animation"
path = "examples/animation.rs"
[[example]]
name = "app_basics"
path = "examples/app_basics.rs"
[[example]]
name = "app_full"
path = "examples/app_full.rs"
[[example]]
name = "fetch"
path = "examples/fetch.rs"
[[example]]
name = "flock"
path = "examples/flock.rs"
[[example]]
name = "frozen_lake_run"
path = "examples/frozen_lake_run.rs"
[[example]]
name = "frozen_lake_train"
path = "examples/frozen_lake_train.rs"
[[example]]
name = "hello_ml"
path = "examples/hello_ml.rs"
[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
[[example]]
name = "hello_world_scene"
path = "examples/hello_world_scene.rs"
[[example]]
name = "seek"
path = "examples/seek.rs"
[[example]]
name = "seek_3d"
path = "examples/seek_3d.rs"
[dependencies.beet_core]
default-features = false
version = "0.0.2"
[dependencies.beet_ecs]
version = "0.0.2"
[dependencies.beet_ml]
optional = true
version = "0.0.2"
[dependencies.beet_net]
optional = true
version = "0.0.2"
[dev-dependencies.anyhow]
version = "1.0.75"
[dev-dependencies.bevy]
default-features = true
features = ["bevy_scene", "serialize"]
version = "0.14"
[dev-dependencies.forky_bevy]
version = "0.1.50"
[dev-dependencies.log]
version = "0.4"
[dev-dependencies.pretty_env_logger]
version = "0.4"
[dev-dependencies.serde]
features = ["derive"]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[features]
animation = ["beet_core/animation"]
assets = ["beet_core/assets"]
default = ["ml", "animation", "assets", "ui", "net"]
ml = ["dep:beet_ml"]
net = ["dep:beet_net"]
reflect = ["beet_ecs/reflect"]
tokio = ["beet_net/tokio"]
ui = ["beet_core/ui"]
[lib]
name = "beet"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["science::robotics", "game-development", "simulation", "wasm", "embedded"]
description = "A very flexible AI behavior library for games and robotics."
documentation = "https://beetmash.com/docs/beet"
edition = "2021"
homepage = "https://beetmash.com/docs/beet"
keywords = ["beet", "beetmash", "behavior", "game-ai", "robotics"]
license = "MIT OR Apache-2.0"
name = "beet"
readme = "README.md"
repository = "https://github.com/mrchantey/beet"
version = "0.0.2"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[target."cfg(not(target_arch = \"wasm32\"))".dev-dependencies.tokio]
features = ["full"]
version = "1.35"
[target."cfg(target_arch = \"wasm32\")".dev-dependencies.console_log]
features = ["color"]
version = "1.0"
[target."cfg(target_arch = \"wasm32\")".dev-dependencies.wasm-bindgen]
version = "0.2"
[target."cfg(target_arch = \"wasm32\")".dev-dependencies.web-sys]
features = ["Headers", "Document", "Element", "Window", "Cache", "CacheStorage", "HtmlIFrameElement", "DomRectReadOnly", "MediaQueryList", "MouseEvent", "KeyboardEvent", "CustomEvent", "CustomEventInit", "Gpu", "console", "Navigator", "Performance", "Request", "RequestInit", "RequestMode", "Response", "Blob", "BlobEvent", "BlobEventInit", "BlobPropertyBag", "HtmlAnchorElement", "HtmlCanvasElement", "HtmlInputElement", "File", "FileList", "Url", "History", "Location", "UrlSearchParams", "IdbCursor", "IdbCursorDirection", "IdbCursorWithValue", "IdbDatabase", "IdbFactory", "IdbFileHandle", "IdbFileMetadataParameters", "IdbFileRequest", "IdbIndex", "IdbIndexParameters", "IdbKeyRange", "IdbLocaleAwareKeyRange", "IdbMutableFile", "IdbObjectStore", "IdbObjectStoreParameters", "IdbOpenDbOptions", "IdbOpenDbRequest", "IdbRequest", "IdbRequestReadyState", "IdbTransaction", "IdbTransactionMode", "IdbVersionChangeEvent", "IdbVersionChangeEventInit"]
version = "0.3"