mirror of
https://git.sr.ht/~spicywolf/k2spice
synced 2025-01-18 17:59:39 +00:00
doing silly things, ignore me
This commit is contained in:
parent
c9808091cc
commit
091e496d15
12
Cargo.toml
Normal file
12
Cargo.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
[workspace]
|
||||
|
||||
members = [
|
||||
# userspace commands
|
||||
"usr/src/mei/true",
|
||||
"usr/src/mei/pwd",
|
||||
"usr/src/mei/yes",
|
||||
"usr/src/mei/echo",
|
||||
"usr/src/mei/printf",
|
||||
# system
|
||||
"usr/src/kei",
|
||||
]
|
|
@ -1,11 +0,0 @@
|
|||
[workspace]
|
||||
|
||||
members = [
|
||||
# userspace commands
|
||||
"mei/true",
|
||||
"mei/pwd",
|
||||
"mei/yes",
|
||||
"mei/echo",
|
||||
# system
|
||||
"kei",
|
||||
]
|
12
usr/src/mei/printf/Cargo.toml
Normal file
12
usr/src/mei/printf/Cargo.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
[package]
|
||||
name = "printf"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[[bin]]
|
||||
name = "printf"
|
||||
path = "src/main.rs"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
3
usr/src/mei/printf/src/main.rs
Normal file
3
usr/src/mei/printf/src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Reference in a new issue