1
Fork 0

core: Re-export all subcrates

This commit is contained in:
Steffo 2024-11-11 08:46:16 +01:00
parent 77e76d9dfb
commit c2da1723cf
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0
2 changed files with 6 additions and 0 deletions

View file

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

View file

@ -0,0 +1,4 @@
//! Core crate of the `acrate` project.
pub use acrate_nodeinfo as nodeinfo;
pub use acrate_hostmeta as hostmeta;