From c9afa95fd6035abe561e91a412013b875cd2293b Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 15 Nov 2024 01:57:13 +0100 Subject: [PATCH] `core`: Remove dependency on workspace (This will be the database crate) --- acrate-core/Cargo.toml | 3 +-- acrate-core/src/lib.rs | 3 --- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/acrate-core/Cargo.toml b/acrate-core/Cargo.toml index f46d521..6e6c7ac 100644 --- a/acrate-core/Cargo.toml +++ b/acrate-core/Cargo.toml @@ -6,8 +6,7 @@ edition = "2021" [dependencies] diesel = { version = "2.2.4", features = ["postgres", "uuid"] } diesel_migrations = "2.2.0" -acrate-hostmeta = { path = "../acrate-hostmeta" } -acrate-nodeinfo = { path = "../acrate-nodeinfo" } +uuid = "1.11.0" [lints.clippy] tabs-in-doc-comments = "allow" diff --git a/acrate-core/src/lib.rs b/acrate-core/src/lib.rs index 0011441..e25af41 100644 --- a/acrate-core/src/lib.rs +++ b/acrate-core/src/lib.rs @@ -2,6 +2,3 @@ mod schema; mod meta; - -pub use acrate_nodeinfo as nodeinfo; -pub use acrate_hostmeta as hostmeta;