nonx workspace

This commit is contained in:
pointer-to-bios 2024-09-23 13:02:59 +08:00
commit c744f1c19c
5 changed files with 42 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
/.vscode

9
.gitmodules vendored Normal file
View File

@ -0,0 +1,9 @@
[submodule "kernel"]
path = kernel
url = https://git.suthby.org:2024/NonX/kernel-demo.git
[submodule "nonx"]
path = nonx
url = https://git.suthby.org:2024/NonX/nonx.git
[submodule "nonx_api"]
path = nonx_api
url = https://git.suthby.org:2024/NonX/nonx-api.git

22
Cargo.lock generated Normal file
View File

@ -0,0 +1,22 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "kernel"
version = "0.1.0"
dependencies = [
"nonx",
"nonx-api",
]
[[package]]
name = "nonx"
version = "0.1.0"
[[package]]
name = "nonx-api"
version = "0.1.0"
dependencies = [
"nonx",
]

7
Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[workspace]
resolver = "2"
members = [
"kernel",
"nonx",
"nonx_api"
]

2
rust-toolchain.toml Normal file
View File

@ -0,0 +1,2 @@
[toolchain]
channel = "nightly"