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-gui/Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "xmpd-gui"
edition = "2021"
readme="README.md"
authors.workspace = true
version.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-gui/README.md Normal file
View File

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

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