45 lines
857 B
TOML
45 lines
857 B
TOML
[workspace]
|
|
members = [
|
|
# Device types
|
|
"node",
|
|
"master",
|
|
# Examples
|
|
"examples/playground"
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
repository = "https://git.bfpower.io/BFPOWER/physical"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
|
|
[workspace.dependencies]
|
|
##### no-std #####
|
|
# General utility
|
|
thiserror = "1.0.*"
|
|
# Units of measurement
|
|
uom = "0.34.*"
|
|
# Logging
|
|
tracing = "0.1.*"
|
|
# Serialization
|
|
parity-scale-codec = "3.4.*"
|
|
|
|
##### std #####
|
|
# Async
|
|
futures-lite = "1.12.*"
|
|
async-io = "1.13.*"
|
|
|
|
[package]
|
|
name = "physical"
|
|
description = "Physical is a library for interacting with the physical world."
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
thiserror.workspace = true
|
|
uom.workspace = true
|
|
parity-scale-codec.workspace = true |