structs + api deps

pull/3/head
prplV 2025-01-16 10:32:19 +03:00
parent 9a70171a5e
commit aca94a9ad2
7 changed files with 16 additions and 1 deletions

View File

@ -1,7 +1,7 @@
[workspace]
resolver = "2"
members = [
"crates/api-grub", "crates/config-delivery", "crates/preproc",
"crates/api-grub", "crates/config-delivery", "crates/integr-structs", "crates/preproc",
]
[profile.dev]

View File

@ -7,3 +7,6 @@ edition = "2021"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["full"] }
integr-structs = {path = "../integr-structs"}
env_logger = "0.11.6"
log = "0.4.25"

View File

@ -0,0 +1,2 @@
// mod to communicate with api-grub config file
// 1) check changes in unix-socket

View File

@ -0,0 +1,8 @@
[package]
name = "integr-structs"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"

View File

View File

@ -0,0 +1,2 @@
pub mod api;
pub mod preproc;

View File