Skip to content

Commit

Permalink
impls: add Result, Cow, RwLock, Mutex, Cell, RefCell
Browse files Browse the repository at this point in the history
  • Loading branch information
jordens committed Nov 12, 2024
1 parent 963f6c2 commit 8704861
Show file tree
Hide file tree
Showing 3 changed files with 639 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

* `std` and `alloc` features and `Tree*` impls for `Box`, `Rc`, `Arc`
* `std` and `alloc` features and `Tree*` impls for `Box`, `Rc`, `Arc`, `Cow`, `Mutex`,
`RwLock`, `Cell`, `RefCell`

## [0.17.0](https://github.com/quartiq/miniconf/compare/v0.16.3...v0.17.0) - 2024-10-25

Expand Down
2 changes: 1 addition & 1 deletion miniconf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ postcard = { version = "1.0.8", optional = true }
thiserror = { version = "2", default-features = false }

[features]
default = ["derive"]
default = ["derive", "std"]
json-core = ["dep:serde-json-core"]
postcard = ["dep:postcard"]
derive = ["dep:miniconf_derive", "serde/derive"]
Expand Down
Loading

0 comments on commit 8704861

Please sign in to comment.