From 2170fa287b259b0b121331ee28087c10e72d91ce Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Sat, 28 Sep 2024 00:35:42 +0900 Subject: [PATCH] Fixing which crates will be published and adding a README.MD to the lazy_link_derive crate --- examples/minimal/Cargo.toml | 1 + examples/windows-msgbox/Cargo.toml | 1 + lazy_link/Cargo.toml | 2 ++ lazy_link_derive/Cargo.toml | 1 + lazy_link_derive/README.MD | 3 +++ 5 files changed, 8 insertions(+) create mode 100644 lazy_link_derive/README.MD diff --git a/examples/minimal/Cargo.toml b/examples/minimal/Cargo.toml index 056859c..cb25fb8 100644 --- a/examples/minimal/Cargo.toml +++ b/examples/minimal/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "example-minimal" +publish = false license-file.workspace = true authors.workspace = true repository.workspace = true diff --git a/examples/windows-msgbox/Cargo.toml b/examples/windows-msgbox/Cargo.toml index 6abce15..7dea3f7 100644 --- a/examples/windows-msgbox/Cargo.toml +++ b/examples/windows-msgbox/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "example-windows" +publish = false license-file.workspace = true authors.workspace = true repository.workspace = true diff --git a/lazy_link/Cargo.toml b/lazy_link/Cargo.toml index d4ed9d8..e23278b 100644 --- a/lazy_link/Cargo.toml +++ b/lazy_link/Cargo.toml @@ -1,11 +1,13 @@ [package] name = "lazy_link" +publish = true license-file.workspace = true authors.workspace = true repository.workspace = true edition.workspace = true version.workspace = true description.workspace = true +readme = "../README.MD" [dependencies] lazy_link_derive = { path = "../lazy_link_derive", version = "0.1" } diff --git a/lazy_link_derive/Cargo.toml b/lazy_link_derive/Cargo.toml index 26f0878..810cea2 100644 --- a/lazy_link_derive/Cargo.toml +++ b/lazy_link_derive/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "lazy_link_derive" +publish = true license-file.workspace = true authors.workspace = true repository.workspace = true diff --git a/lazy_link_derive/README.MD b/lazy_link_derive/README.MD new file mode 100644 index 0000000..0cd9019 --- /dev/null +++ b/lazy_link_derive/README.MD @@ -0,0 +1,3 @@ +# lazy_link_derive +This is a procedural macro crate for [lazy_link](https://crates.io/crates/lazy_link). +It is not intended for direct usage and is meant to be used as a supporting library for `lazy_link`. \ No newline at end of file