Skip to content

Commit b44582d

Browse files
committed
chore: Update from _rust template
2 parents 4d54a75 + f218f4a commit b44582d

File tree

28 files changed

+37
-36
lines changed

28 files changed

+37
-36
lines changed

crates/json-write/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ include.workspace = true
1414

1515
[package.metadata.docs.rs]
1616
all-features = true
17-
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
17+
rustdoc-args = ["--generate-link-to-definition"]
1818

1919
[package.metadata.release]
2020
pre-release-replacements = [

crates/json-write/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ A low-level interface for writing out TOML
99

1010
Licensed under either of
1111

12-
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)
13-
* MIT license ([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
12+
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <https://www.apache.org/licenses/LICENSE-2.0>)
13+
* MIT license ([LICENSE-MIT](LICENSE-MIT) or <https://opensource.org/license/mit>)
1414

1515
at your option.
1616

crates/json-write/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
//! ```
3131
3232
#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
33-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
33+
#![cfg_attr(docsrs, feature(doc_cfg))]
3434
#![warn(clippy::std_instead_of_core)]
3535
#![warn(clippy::std_instead_of_alloc)]
3636
#![warn(clippy::print_stderr)]

crates/lexarg-error/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include.workspace = true
1212

1313
[package.metadata.docs.rs]
1414
all-features = true
15-
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
15+
rustdoc-args = ["--generate-link-to-definition"]
1616

1717
[package.metadata.release]
1818
pre-release-replacements = [

crates/lexarg-error/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
Licensed under either of
1212

13-
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)
14-
* MIT license ([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
13+
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <https://www.apache.org/licenses/LICENSE-2.0>)
14+
* MIT license ([LICENSE-MIT](LICENSE-MIT) or <https://opensource.org/license/mit>)
1515

1616
at your option.
1717

crates/lexarg-error/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#![doc = include_str!("../examples/hello-error.rs")]
1010
//! ```
1111
12-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
12+
#![cfg_attr(docsrs, feature(doc_cfg))]
1313
#![warn(missing_debug_implementations)]
1414
#![warn(missing_docs)]
1515
#![warn(clippy::print_stderr)]

crates/lexarg-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include.workspace = true
1212

1313
[package.metadata.docs.rs]
1414
all-features = true
15-
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
15+
rustdoc-args = ["--generate-link-to-definition"]
1616

1717
[package.metadata.release]
1818
pre-release-replacements = [

crates/lexarg-parser/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
Licensed under either of
1212

13-
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)
14-
* MIT license ([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
13+
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <https://www.apache.org/licenses/LICENSE-2.0>)
14+
* MIT license ([LICENSE-MIT](LICENSE-MIT) or <https://opensource.org/license/mit>)
1515

1616
at your option.
1717

crates/lexarg-parser/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#![doc = include_str!("../examples/hello-parser.rs")]
1010
//! ```
1111
12-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
12+
#![cfg_attr(docsrs, feature(doc_cfg))]
1313
#![allow(clippy::result_unit_err)]
1414
#![warn(missing_debug_implementations)]
1515
#![warn(missing_docs)]

crates/lexarg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include.workspace = true
1212

1313
[package.metadata.docs.rs]
1414
all-features = true
15-
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
15+
rustdoc-args = ["--generate-link-to-definition"]
1616

1717
[package.metadata.release]
1818
pre-release-replacements = [

0 commit comments

Comments
 (0)