diff --git a/.gitignore b/.gitignore index f18e20c..e3eceea 100644 --- a/.gitignore +++ b/.gitignore @@ -3,8 +3,8 @@ !embed/ !embed/src/ -!embed_macros/ -!embed_macros/src/ +!embed-macros/ +!embed-macros/src/ !.gitignore diff --git a/Cargo.lock b/Cargo.lock index 33cd329..e0999a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6,11 +6,11 @@ version = 3 name = "embed" version = "0.1.0" dependencies = [ - "embed_macros", + "embed-macros", ] [[package]] -name = "embed_macros" +name = "embed-macros" version = "0.1.0" dependencies = [ "proc-macro2", @@ -20,9 +20,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.75" +version = "1.0.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "907a61bd0f64c2f29cd1cf1dc34d05176426a3f504a78010f08416ddb7b13708" +checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" dependencies = [ "unicode-ident", ] diff --git a/Cargo.toml b/Cargo.toml index 2f39030..469c2dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,2 +1,2 @@ [workspace] -members = [ "embed", "embed_macros" ] +members = [ "embed", "embed-macros" ] diff --git a/embed_macros/Cargo.toml b/embed-macros/Cargo.toml similarity index 95% rename from embed_macros/Cargo.toml rename to embed-macros/Cargo.toml index 6f33304..3da0d2d 100644 --- a/embed_macros/Cargo.toml +++ b/embed-macros/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "embed_macros" +name = "embed-macros" description = "Read files or directories from the filesystem at runtime on debug, embed on release." repository = "https://github.com/RGBCube/embed-rs" license = "MIT" diff --git a/embed_macros/README.md b/embed-macros/README.md similarity index 100% rename from embed_macros/README.md rename to embed-macros/README.md diff --git a/embed_macros/src/lib.rs b/embed-macros/src/lib.rs similarity index 100% rename from embed_macros/src/lib.rs rename to embed-macros/src/lib.rs diff --git a/embed/Cargo.toml b/embed/Cargo.toml index d6b738f..f55922b 100644 --- a/embed/Cargo.toml +++ b/embed/Cargo.toml @@ -10,4 +10,4 @@ version = "0.1.0" edition = "2021" [dependencies] -embed_macros = { path = "../embed_macros" } +embed-macros = { path = "../embed-macros" }