feat: initialize core, gui-eframe, and tui-ratatui crates and use them in the multibinary

This commit is contained in:
J / Jacob Babich
2024-10-05 23:27:47 -04:00
parent dbccf23a50
commit 18cb5043cf
12 changed files with 96 additions and 6 deletions

16
core/Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "ac-qu-ai-nt-core"
version = "0.0.1"
edition = "2021"
rust-version = "1.76"
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
[features]
default = ["tracing"]
tracing = ["dep:tracing"]
[dependencies]
tracing = { workspace = true, optional = true }

0
core/src/lib.rs Normal file
View File