File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " miniarg"
3- version = " 0.3.1 "
3+ version = " 0.4.0 "
44authors = [" Niklas Sombert <niklas@ytvwld.de>" ]
55description = " A minimal argument parser, with support for no-std and no-alloc"
66categories = [" command-line-interface" , " no-std" ]
@@ -13,7 +13,7 @@ repository = "https://github.com/YtvwlD/miniarg"
1313# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414
1515[dependencies ]
16- miniarg_derive = { version = " 0.3 " , optional = true }
16+ miniarg_derive = { version = " 0.4 " , optional = true }
1717cfg-if = " 1.0"
1818
1919[dev-dependencies ]
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ The last parameter can also be just a key without a value.
1717Add this to your ` Cargo.toml ` :
1818``` toml
1919[dependencies ]
20- miniarg = " 0.3 "
20+ miniarg = " 0.4 "
2121```
2222The feature ` std ` is enabled by default and ` alloc ` and ` derive ` are optional.
2323
Original file line number Diff line number Diff line change 11[package ]
22name = " miniarg_derive"
3- version = " 0.3.1 "
3+ version = " 0.4.0 "
44authors = [" Niklas Sombert <niklas@ytvwld.de>" ]
55description = " custom derive for miniarg"
66readme = " README.md"
Original file line number Diff line number Diff line change 11//! custom derives for [miniarg]
22//!
33//! [miniarg]: https://github.com/YtvwlD/miniarg
4- #![ doc( html_root_url = "https://docs.rs/miniarg_derive/0.3.1 " ) ]
4+ #![ doc( html_root_url = "https://docs.rs/miniarg_derive/0.4.0 " ) ]
55
66use proc_macro:: TokenStream ;
77use quote:: quote;
Original file line number Diff line number Diff line change 9191//! [`ToString`]: https://doc.rust-lang.org/nightly/alloc/string/trait.ToString.html
9292//! [`ParseError`]: enum.ParseError.html
9393//! [`split_args`]: split_args/index.html
94- #![ doc( html_root_url = "https://docs.rs/miniarg/0.3.1 " ) ]
94+ #![ doc( html_root_url = "https://docs.rs/miniarg/0.4.0 " ) ]
9595#![ cfg_attr( not( feature = "std" ) , no_std) ]
9696#[ cfg( feature = "alloc" ) ]
9797extern crate alloc;
You can’t perform that action at this time.
0 commit comments