[package]
edition = "2024"
name = "beet-cli"
version = "0.0.9-rc.1"
authors = ["Pete Hayman"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tools for building and deploying beet apps"
homepage = "https://beetstack.dev"
documentation = "https://docs.rs/beet"
readme = "README.md"
keywords = [
"folk-technology",
"web",
"behavior",
"game-ai",
"robotics",
]
categories = [
"science::robotics",
"game-development",
"simulation",
"wasm",
"embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mrchantey/beet"
resolver = "2"
[features]
default = ["qrcode"]
qrcode = [
"dep:qrcode",
"dep:image",
]
[lib]
name = "beet_cli"
path = "src/lib.rs"
[[bin]]
name = "beet"
path = "src/main.rs"
[dev-dependencies.beet_core]
version = "0.0.9-rc.1"
features = ["testing"]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.beet]
version = "0.0.9-rc.1"
features = [
"launch",
"webdriver",
"clanker",
]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.bevy]
version = "0.18"
features = [
"std",
"debug",
"bevy_log",
"bevy_color",
"reflect_documentation",
"reflect_auto_register",
"keyboard",
]
default-features = false
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.heck]
version = "0.4"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.image]
version = "0.25"
optional = true
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.prettyplease]
version = "0.2"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.proc-macro2]
version = "1"
features = ["span-locations"]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.qrcode]
version = "0.14"
optional = true
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.quote]
version = "1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.ron]
version = "0.8"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.syn]
version = "2"
features = [
"extra-traits",
"visit",
"full",
]