mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-08 22:38:01 -06:00
Work on custom binaries
This commit is contained in:
@@ -1,11 +0,0 @@
|
||||
name="Client"
|
||||
version="0.1"
|
||||
description="Test Client module"
|
||||
authors=["astatin3"]
|
||||
|
||||
|
||||
[config]
|
||||
header1 = { Header = "Header123" }
|
||||
integer1 = { Integer = {}}
|
||||
|
||||
[build_config]
|
||||
@@ -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 = {}}
|
||||
@@ -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
|
||||
@@ -0,0 +1,5 @@
|
||||
use unshell::info;
|
||||
|
||||
pub fn log_test_fn() {
|
||||
info!("Testttttttt");
|
||||
}
|
||||
@@ -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"
|
||||
]
|
||||
Reference in New Issue
Block a user