Skip to content

Commit

Permalink
Fixing which crates will be published and adding a README.MD to the l…
Browse files Browse the repository at this point in the history
…azy_link_derive crate
  • Loading branch information
WolverinDEV committed Sep 27, 2024
1 parent 9a9104a commit 2170fa2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/minimal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "example-minimal"
publish = false
license-file.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
1 change: 1 addition & 0 deletions examples/windows-msgbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "example-windows"
publish = false
license-file.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions lazy_link/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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" }
Expand Down
1 change: 1 addition & 0 deletions lazy_link_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "lazy_link_derive"
publish = true
license-file.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
3 changes: 3 additions & 0 deletions lazy_link_derive/README.MD
Original file line number Diff line number Diff line change
@@ -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`.

0 comments on commit 2170fa2

Please sign in to comment.