1
Fork 0

Create webfinger crate #5

Merged
steffo merged 53 commits from feature/webfinger into main 2024-11-16 06:33:06 +00:00
2 changed files with 1 additions and 5 deletions
Showing only changes of commit c9afa95fd6 - Show all commits
acrate-core

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;