Initial node implementation #4

Merged
zack merged 51 commits from develop into master 2023-07-19 18:09:13 +00:00
3 changed files with 44 additions and 12 deletions
Showing only changes of commit 04007afae0 - Show all commits

View File

@ -1,8 +1,3 @@
[workspace]
members = [
"master"
]
[workspace.package] [workspace.package]
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
@ -13,10 +8,24 @@ license = "MIT"
[workspace.dependencies] [workspace.dependencies]
thiserror = "1.0.*" thiserror = "1.0.*"
uom = "0.33.*" uom = "0.33.*"
# Logging # Logging
log = "0.4.*" log = "0.4.*"
env_logger = "0.9.*" env_logger = "0.9.*"
# Async # Async
tokio = "1.21.*" 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"] }

View File

@ -1,15 +0,0 @@
[package]
name = "physical-master"
description = "Physical is a library for interacting with the physical world. The master physical computer is the computer peripherals are connected to and is intended to do the heavy lifting of data processing and decision making for the system being controlled"
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"] }