1 Commits

Author SHA1 Message Date
cuddle-please
840480f3cc chore(release): 0.0.1
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-07-22 20:07:03 +00:00
3 changed files with 3 additions and 8 deletions

View File

@@ -6,11 +6,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.0.2] - 2025-07-22
### Docs
- use public packages
## [0.0.1] - 2025-07-22 ## [0.0.1] - 2025-07-22
### Added ### Added

View File

@@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2" resolver = "2"
[workspace.package] [workspace.package]
version = "0.0.2" version = "0.0.1"
[workspace.dependencies] [workspace.dependencies]
nodrop = { path = "crates/nodrop" } nodrop = { path = "crates/nodrop" }

View File

@@ -22,14 +22,14 @@
```toml ```toml
[dependencies] [dependencies]
nodrop = "*" nodrop = { git = "https://github.com/kjuulh/nodrop" }
``` ```
### Enable `notmad` integration (optional) ### Enable `notmad` integration (optional)
```toml ```toml
[dependencies] [dependencies]
nodrop = { version = "*", features = ["notmad"] } nodrop = { git = "https://github.com/kjuulh/nodrop", features = ["notmad"] }
``` ```
--- ---