Initial node implementation #4

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

View File

@ -1,3 +1,8 @@
[workspace]
members = [
"master"
]
[workspace.package] [workspace.package]
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
@ -13,21 +18,4 @@ log = "0.4.*"
env_logger = "0.9.*" env_logger = "0.9.*"
# Async # Async
futures-lite = "1.12.*" futures-lite = "1.12.*"
async-io = "1.9.*" async-io = "1.9.*"
[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
futures-lite.workspace = true
async-io.workspace = true

16
master/Cargo.toml Normal file
View File

@ -0,0 +1,16 @@
[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
futures-lite.workspace = true
async-io.workspace = true