22 lines
372 B
TOML
22 lines
372 B
TOML
[workspace]
|
|
members = [
|
|
"master",
|
|
"examples/playground"
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
repository = "https://git.bfpower.io/BFPOWER/physical"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
|
|
[workspace.dependencies]
|
|
thiserror = "1.0.*"
|
|
uom = "0.33.*"
|
|
# Logging
|
|
log = "0.4.*"
|
|
env_logger = "0.10.*"
|
|
# Async
|
|
futures-lite = "1.12.*"
|
|
async-io = "1.12.*" |