@@ -126,7 +126,7 @@ OS's locale information. It has a very similar API to [`Locale`] and should work
126
126
operating systems (i.e. macOS, linux, the BSDs, and Windows).
127
127
128
128
<i>Since this type requires several dependencies (especially on Windows), it is behind a feature
129
- flag. To use it, include `num-format = { version = "0.4", features = ["with-system-locale"] }`
129
+ flag. To use it, include `num-format = { version = "0.4.2 ", features = ["with-system-locale"] }`
130
130
in your `Cargo.toml`. Additionally, on Windows (but **only** on Windows), using `SystemLocale`
131
131
requires Clang 3.9 or higher.</i>
132
132
@@ -187,10 +187,10 @@ fn main() -> Result<(), Error> {
187
187
188
188
| Available features | What to put in your `Cargo.toml` |
189
189
| :------------------- | :-------------------------------------------------------------------- |
190
- | `no_std` | `num-format = { version = "0.4", default-features = false }` |
191
- | `with-num-bigint` | `num-format = { version = "0.4", features = ["with-num-bigint"] }` |
192
- | `with-serde` | `num-format = { version = "0.4", features = ["with-serde"] }` |
193
- | `with-system-locale` | `num-format = { version = "0.4", features = ["with-system-locale"] }` |
190
+ | `no_std` | `num-format = { version = "0.4.2 ", default-features = false }` |
191
+ | `with-num-bigint` | `num-format = { version = "0.4.2 ", features = ["with-num-bigint"] }` |
192
+ | `with-serde` | `num-format = { version = "0.4.2 ", features = ["with-serde"] }` |
193
+ | `with-system-locale` | `num-format = { version = "0.4.2 ", features = ["with-system-locale"] }` |
194
194
195
195
# License
196
196
@@ -202,24 +202,24 @@ fn main() -> Result<(), Error> {
202
202
at your option.
203
203
204
204
[bindgen]: https://crates.io/crates/bindgen
205
- [`Buffer`]: https://docs.rs/num-format/0.4.0 /num_format/struct.Buffer.html
205
+ [`Buffer`]: https://docs.rs/num-format/0.4.2 /num_format/struct.Buffer.html
206
206
[Common Locale Data Repository]: https://en.wikipedia.org/wiki/Common_Locale_Data_Repository
207
- [`CustomFormat`]: https://docs.rs/num-format/0.4.0 /num_format/struct.CustomFormat.html
207
+ [`CustomFormat`]: https://docs.rs/num-format/0.4.2 /num_format/struct.CustomFormat.html
208
208
[`File`]: https://doc.rust-lang.org/std/fs/struct.File.html
209
209
[`fmt::Write`]: https://doc.rust-lang.org/std/fmt/fn.write.html
210
- [`Format`]: https://docs.rs/num-format/0.4.0 /num_format/trait.Format.html
210
+ [`Format`]: https://docs.rs/num-format/0.4.2 /num_format/trait.Format.html
211
211
[`io::Write`]: https://doc.rust-lang.org/std/io/trait.Write.html
212
- [`Locale`]: https://docs.rs/num-format/0.4.0 /num_format/enum.Locale.html
212
+ [`Locale`]: https://docs.rs/num-format/0.4.2 /num_format/enum.Locale.html
213
213
[`num_bigint::BigInt`]: https://docs.rs/num-bigint/0.2.2/num_bigint/struct.BigInt.html
214
214
[picking a format]: #picking-a-format
215
215
[`String`]: https://doc.rust-lang.org/std/string/struct.String.html
216
216
[The Apache License, Version 2.0]: http://www.apache.org/licenses/LICENSE-2.0
217
217
[The MIT license]: http://opensource.org/licenses/MIT
218
- [`ToFormattedString`]: https://docs.rs/num-format/0.4.0 /num_format/trait.ToFormattedString.html
219
- [`to_formatted_string`]: https://docs.rs/num-format/0.4.0 /num_format/trait.ToFormattedString.html#method.to_formatted_string
218
+ [`ToFormattedString`]: https://docs.rs/num-format/0.4.2 /num_format/trait.ToFormattedString.html
219
+ [`to_formatted_string`]: https://docs.rs/num-format/0.4.2 /num_format/trait.ToFormattedString.html#method.to_formatted_string
220
220
[Unicode Consortium]: https://en.wikipedia.org/wiki/Unicode_Consortium
221
221
[`Vec`]: https://doc.rust-lang.org/std/vec/struct.Vec.html
222
- [`WriteFormatted`]: https://docs.rs/num-format/0.4.0 /num_format/trait.WriteFormatted.html
222
+ [`WriteFormatted`]: https://docs.rs/num-format/0.4.2 /num_format/trait.WriteFormatted.html
223
223
*/
224
224
225
225
#![ cfg_attr( not( feature = "std" ) , no_std) ]
@@ -237,7 +237,7 @@ at your option.
237
237
trivial_numeric_casts,
238
238
unused
239
239
) ]
240
- #![ doc( html_root_url = "https://docs.rs/num-format/0.4.1 " ) ]
240
+ #![ doc( html_root_url = "https://docs.rs/num-format/0.4.2 " ) ]
241
241
242
242
#[ cfg( all( feature = "with-system-locale" , unix) ) ]
243
243
#[ macro_use]
0 commit comments