Moved victoriafalls to sys dir in rust.
This commit is contained in:
parent
9452e6c705
commit
c8f84ec352
|
@ -1,7 +1,15 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
|
|
||||||
members = [
|
members = [
|
||||||
"lib/mammoth", "lib/victoriafalls", "lib/voyageurs", "lib/yellowstone", "lib/yunq", "lib/yunq-test", "sys/denali", "sys/teton", "sys/yellowstone", "usr/testbed",
|
"lib/mammoth",
|
||||||
|
"lib/voyageurs",
|
||||||
|
"lib/yellowstone",
|
||||||
|
"lib/yunq",
|
||||||
|
"lib/yunq-test",
|
||||||
|
"sys/denali",
|
||||||
|
"sys/teton",
|
||||||
|
"sys/victoriafalls",
|
||||||
|
"sys/yellowstone",
|
||||||
|
"usr/testbed",
|
||||||
]
|
]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "victoriafalls"
|
|
||||||
version = "0.1.0"
|
|
||||||
edition = "2021"
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
mammoth = { path = "../mammoth" }
|
|
||||||
yellowstone-yunq = { path = "../yellowstone" }
|
|
||||||
yunq = {path = "../yunq"}
|
|
||||||
|
|
||||||
[build-dependencies]
|
|
||||||
yunqc = {path = "../../../yunq/rust"}
|
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,6 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
mammoth = { path = "../../lib/mammoth" }
|
mammoth = { path = "../../lib/mammoth" }
|
||||||
victoriafalls = { path = "../../lib/victoriafalls" }
|
victoriafalls = { path = "../victoriafalls" }
|
||||||
voyageurs = { path = "../../lib/voyageurs" }
|
voyageurs = { path = "../../lib/voyageurs" }
|
||||||
yellowstone-yunq = { path = "../../lib/yellowstone" }
|
yellowstone-yunq = { path = "../../lib/yellowstone" }
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
[package]
|
||||||
|
name = "victoriafalls"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
mammoth = { path = "../../lib/mammoth" }
|
||||||
|
yellowstone-yunq = { path = "../../lib/yellowstone" }
|
||||||
|
yunq = { path = "../../lib/yunq" }
|
||||||
|
|
||||||
|
[build-dependencies]
|
||||||
|
yunqc = { path = "../../../yunq/rust" }
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "victoriafalls"
|
|
@ -0,0 +1,11 @@
|
||||||
|
#![no_std]
|
||||||
|
#![no_main]
|
||||||
|
|
||||||
|
use mammoth::{define_entry, zion::z_err_t};
|
||||||
|
|
||||||
|
define_entry!();
|
||||||
|
|
||||||
|
#[no_mangle]
|
||||||
|
extern "C" fn main() -> z_err_t {
|
||||||
|
0
|
||||||
|
}
|
|
@ -5,8 +5,8 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
mammoth = { path = "../../lib/mammoth" }
|
mammoth = { path = "../../lib/mammoth" }
|
||||||
denali = { path = "../../sys/denali", default-features = false}
|
denali = { path = "../denali", default-features = false }
|
||||||
victoriafalls = { path = "../../lib/victoriafalls" }
|
victoriafalls = { path = "../victoriafalls" }
|
||||||
voyageurs = { path = "../../lib/voyageurs" }
|
voyageurs = { path = "../../lib/voyageurs" }
|
||||||
yellowstone-yunq = { path = "../../lib/yellowstone" }
|
yellowstone-yunq = { path = "../../lib/yellowstone" }
|
||||||
yunq = { path = "../../lib/yunq" }
|
yunq = { path = "../../lib/yunq" }
|
||||||
|
|
Loading…
Reference in New Issue