diff --git a/Cargo.toml b/Cargo.toml index defdbd3..053f9fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,3 @@ [workspace] resolver = "2" -members = ["acrate-core", "acrate-nodeinfo"] +members = ["acrate-core", "acrate-hostmeta"] diff --git a/acrate-nodeinfo/Cargo.toml b/acrate-hostmeta/Cargo.toml similarity index 94% rename from acrate-nodeinfo/Cargo.toml rename to acrate-hostmeta/Cargo.toml index 986b27e..67a5122 100644 --- a/acrate-nodeinfo/Cargo.toml +++ b/acrate-hostmeta/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "acrate-nodeinfo" +name = "acrate-hostmeta" version = "0.1.0" edition = "2021" diff --git a/acrate-nodeinfo/src/lib.rs b/acrate-hostmeta/src/lib.rs similarity index 100% rename from acrate-nodeinfo/src/lib.rs rename to acrate-hostmeta/src/lib.rs diff --git a/acrate-nodeinfo/tests/discover_test.rs b/acrate-hostmeta/tests/hostmeta_tests.rs similarity index 98% rename from acrate-nodeinfo/tests/discover_test.rs rename to acrate-hostmeta/tests/hostmeta_tests.rs index 71ac96b..5e2185e 100644 --- a/acrate-nodeinfo/tests/discover_test.rs +++ b/acrate-hostmeta/tests/hostmeta_tests.rs @@ -28,7 +28,7 @@ macro_rules! test { }; ($id:ident, $url:literal, $($tag:meta),*) => { mod $id { - use acrate_nodeinfo::*; + use acrate_hostmeta::*; use super::*; #[tokio::test]