Init Cargo workspace with three crates: pixstrip-core, pixstrip-gtk, pixstrip-cli
This commit is contained in:
10
pixstrip-core/Cargo.toml
Normal file
10
pixstrip-core/Cargo.toml
Normal file
@@ -0,0 +1,10 @@
|
||||
[package]
|
||||
name = "pixstrip-core"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
3
pixstrip-core/src/lib.rs
Normal file
3
pixstrip-core/src/lib.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
pub fn version() -> &'static str {
|
||||
env!("CARGO_PKG_VERSION")
|
||||
}
|
||||
Reference in New Issue
Block a user