1
Fork 0

core: Remove dependency on workspace

(This will be the database crate)
This commit is contained in:
Steffo 2024-11-15 01:57:13 +01:00
parent 34e1eff855
commit c9afa95fd6
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0
2 changed files with 1 additions and 5 deletions

View file

@ -6,8 +6,7 @@ edition = "2021"
[dependencies] [dependencies]
diesel = { version = "2.2.4", features = ["postgres", "uuid"] } diesel = { version = "2.2.4", features = ["postgres", "uuid"] }
diesel_migrations = "2.2.0" diesel_migrations = "2.2.0"
acrate-hostmeta = { path = "../acrate-hostmeta" } uuid = "1.11.0"
acrate-nodeinfo = { path = "../acrate-nodeinfo" }
[lints.clippy] [lints.clippy]
tabs-in-doc-comments = "allow" tabs-in-doc-comments = "allow"

View file

@ -2,6 +2,3 @@
mod schema; mod schema;
mod meta; mod meta;
pub use acrate_nodeinfo as nodeinfo;
pub use acrate_hostmeta as hostmeta;