many changes i made in the last weeks
This commit is contained in:
41
generated/Cargo.toml
Normal file
41
generated/Cargo.toml
Normal file
@@ -0,0 +1,41 @@
|
||||
|
||||
[package]
|
||||
name = "generated-c2vi-dev-part"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
c2vi-dev-part.path = "../dev-part"
|
||||
|
||||
[[bin]]
|
||||
name = "lush-os"
|
||||
path = "lush-os.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "main-os"
|
||||
path = "main-os.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "mac-os"
|
||||
path = "mac-os.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "nico-os"
|
||||
path = "nico-os.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "mppc"
|
||||
path = "mppc.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "timetrack-waybar"
|
||||
path = "timetrack-waybar.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "md"
|
||||
path = "md.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "dev"
|
||||
path = "dev.rs"
|
||||
|
||||
7
generated/dev.rs
Normal file
7
generated/dev.rs
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
fn main() {
|
||||
if let Err(err) = c2vi_part::dev_main() {
|
||||
err.log();
|
||||
}
|
||||
}
|
||||
|
||||
7
generated/lush-os.rs
Normal file
7
generated/lush-os.rs
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
fn main() {
|
||||
if let Err(err) = c2vi_part::lush_os_main() {
|
||||
err.log();
|
||||
}
|
||||
}
|
||||
|
||||
7
generated/mac-os.rs
Normal file
7
generated/mac-os.rs
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
fn main() {
|
||||
if let Err(err) = c2vi_part::mac_os_main() {
|
||||
err.log();
|
||||
}
|
||||
}
|
||||
|
||||
7
generated/main-os.rs
Normal file
7
generated/main-os.rs
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
fn main() {
|
||||
if let Err(err) = c2vi_part::main_os_main() {
|
||||
err.log();
|
||||
}
|
||||
}
|
||||
|
||||
7
generated/md.rs
Normal file
7
generated/md.rs
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
fn main() {
|
||||
if let Err(err) = c2vi_part::md_main() {
|
||||
err.log();
|
||||
}
|
||||
}
|
||||
|
||||
7
generated/mppc.rs
Normal file
7
generated/mppc.rs
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
fn main() {
|
||||
if let Err(err) = c2vi_part::mppc_main() {
|
||||
err.log();
|
||||
}
|
||||
}
|
||||
|
||||
7
generated/nico-os.rs
Normal file
7
generated/nico-os.rs
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
fn main() {
|
||||
if let Err(err) = c2vi_part::nico_os_main() {
|
||||
err.log();
|
||||
}
|
||||
}
|
||||
|
||||
7
generated/timetrack-waybar.rs
Normal file
7
generated/timetrack-waybar.rs
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
fn main() {
|
||||
if let Err(err) = c2vi_part::timetrack_waybar_main() {
|
||||
err.log();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user