31 lines
675 B
TOML
31 lines
675 B
TOML
[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.9.*"
|
|
# Async
|
|
tokio = "1.21.*"
|
|
|
|
[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
|
|
log.workspace = true
|
|
env_logger.workspace = true
|
|
tokio = { workspace = true, features = ["full"] } |