diff options
author | tcmal <me@aria.rip> | 2024-09-08 18:46:43 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-09-12 16:30:09 +0100 |
commit | 9a7042df7f9a7ad0324c4442ae918c2a4a442966 (patch) | |
tree | 81324f03df3ddaac9db7d1e01ef5b319bef659ef /crates/control/Cargo.toml | |
parent | ddc97e9361137fde6f0894ffa729d285159662fa (diff) |
Add framework for separate printer control thread
Diffstat (limited to 'crates/control/Cargo.toml')
-rw-r--r-- | crates/control/Cargo.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crates/control/Cargo.toml b/crates/control/Cargo.toml new file mode 100644 index 0000000..6934db5 --- /dev/null +++ b/crates/control/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "argonaut-control" +version = "0.1.0" +edition = "2021" + +[dependencies] +tokio = { workspace = true } +tracing = { workspace = true } +tracing-subscriber = { workspace = true } |