Skip to content

Commit feffea0

Browse files
daxpeddaModProg
authored andcommitted
Add derive_bounded as an alternative
1 parent d8e652b commit feffea0

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,11 @@ accompanied by a minor version bump. If MSRV is important to you, use
262262

263263
## Alternatives
264264

265-
[derivative](https://crates.io/crates/derivative)
266-
([![Crates.io](https://img.shields.io/crates/v/derivative.svg)](https://crates.io/crates/derivative))
267-
is a great alternative with many options. Notably it doesn't support `no_std`
268-
and requires an extra `#[derive(Derivative)]` to use.
265+
- [derivative](https://crates.io/crates/derivative) [![Crates.io](https://img.shields.io/crates/v/derivative.svg)](https://crates.io/crates/derivative)
266+
is a great alternative with many options. Notably it doesn't support
267+
`no_std` and requires an extra `#[derive(Derivative)]` to use.
268+
- [derive_bounded](https://crates.io/crates/derive_bounded) [![Crates.io](https://img.shields.io/crates/v/derive_bounded.svg)](https://crates.io/crates/derive_bounded)
269+
is a new alternative still in development.
269270

270271
## Changelog
271272

src/lib.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -295,10 +295,11 @@
295295
//!
296296
//! # Alternatives
297297
//!
298-
//! [derivative](https://crates.io/crates/derivative)
299-
//! ([![Crates.io](https://img.shields.io/crates/v/derivative.svg)](https://crates.io/crates/derivative))
300-
//! is a great alternative with many options. Notably it doesn't support
301-
//! `no_std` and requires an extra `#[derive(Derivative)]` to use.
298+
//! - [derivative](https://crates.io/crates/derivative) [![Crates.io](https://img.shields.io/crates/v/derivative.svg)](https://crates.io/crates/derivative)
299+
//! is a great alternative with many options. Notably it doesn't support
300+
//! `no_std` and requires an extra `#[derive(Derivative)]` to use.
301+
//! - [derive_bounded](https://crates.io/crates/derive_bounded) [![Crates.io](https://img.shields.io/crates/v/derive_bounded.svg)](https://crates.io/crates/derive_bounded)
302+
//! is a new alternative still in development.
302303
//!
303304
//! # Changelog
304305
//!

0 commit comments

Comments
 (0)