add a process library

pull/1/head
Able 2022-12-05 09:26:42 -06:00
parent 90659806ec
commit 6f7f34804c
Signed by: able
GPG Key ID: 0BD8B45C30DCA887
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,9 @@
[package]
name = "process"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
versioning = { path = "../versioning" }

View File

@ -0,0 +1,4 @@
pub type PID = u32;
use versioning::Version;
pub const VERSION: Version = Version::new(0, 1, 0);