Work on custom binaries

This commit is contained in:
Michael Mikovsky
2026-01-30 14:05:07 -07:00
parent b2fe85a698
commit 82d8e1ba10
21 changed files with 217 additions and 278 deletions
@@ -1,11 +0,0 @@
name="Client"
version="0.1"
description="Test Client module"
authors=["astatin3"]
[config]
header1 = { Header = "Header123" }
integer1 = { Integer = {}}
[build_config]
-3
View File
@@ -1,3 +0,0 @@
[unstable]
build-std = ["core", "std"]
build-std-features = ["optimize_for_size"]
@@ -1,9 +0,0 @@
name="Server"
version="0.1"
description="Test server module for unshell"
authors=["astatin3"]
[config]
header1 = { Header = "Header123" }
integer1 = { Integer = {}}
+16
View File
@@ -0,0 +1,16 @@
[package]
name = "server2"
edition = "2024"
[features]
log = ["unshell/log"]
log_debug = ["unshell/log_debug"]
# [lib]
# crate-type = ["cdylib"]
[dependencies]
unshell.path = "../../"
[lints]
workspace = true
+5
View File
@@ -0,0 +1,5 @@
use unshell::info;
pub fn log_test_fn() {
info!("Testttttttt");
}
-9
View File
@@ -1,9 +0,0 @@
name="UnShell Core"
version="0.1"
description="Core components for UnShell"
authors=["astatin3"]
child_components = [
"client/unshell_component.toml",
"server/unshell_component.toml"
]