This commit is contained in:
2024-10-22 21:54:32 +03:00
commit d9b23d4a24
24 changed files with 507 additions and 0 deletions

20
xmpd-cli/Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "xmpd-cli"
edition = "2021"
readme="README.md"
version.workspace = true
authors.workspace = true
repository.workspace = true
license.workspace = true
autobins = false
autotests = false
autoexamples = false
[features]
default = []
[lib]
crate-type = ["rlib"]
bench = false
[dependencies]

0
xmpd-cli/README.md Normal file
View File

3
xmpd-cli/src/lib.rs Normal file
View File

@@ -0,0 +1,3 @@
pub fn test() {
println!("Hello, world!");
}