Make the codebase a Rust workspace

This commit is contained in:
Tate, Hongliang Tian 2022-08-08 13:34:16 -07:00
parent 320a9ab70b
commit 0ed8839eff
2 changed files with 31 additions and 0 deletions

24
src/Cargo.lock generated Normal file
View File

@ -0,0 +1,24 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "kxos"
version = "0.1.0"
[[package]]
name = "kxos-frame"
version = "0.1.0"
dependencies = [
"bitflags",
]
[[package]]
name = "kxos-std"
version = "0.1.0"

7
src/Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[workspace]
members = [
"kxos",
"kxos-frame",
"kxos-std",
]