|
1 |
| -[package] |
2 |
| -name = "annotate-snippets" |
3 |
| -version = "0.11.4" |
4 |
| -edition = "2021" |
5 |
| -rust-version = "1.65" # MSRV |
6 |
| -authors = [ "Zibi Braniecki <[email protected]>"] |
7 |
| -description = "Library for building code annotations" |
8 |
| -license = "Apache-2.0/MIT" |
9 |
| -repository = "https://github.com/rust-lang/annotate-snippets-rs" |
10 |
| -readme = "README.md" |
11 |
| -keywords = ["code", "analysis", "ascii", "errors", "debug"] |
| 1 | +[workspace] |
| 2 | +resolver = "2" |
12 | 3 |
|
13 |
| -[package.metadata.release] |
14 |
| -tag-name = "{{version}}" |
15 |
| -pre-release-replacements = [ |
16 |
| - {file="CHANGELOG.md", search="Unreleased", replace="{{version}}", min=1}, |
17 |
| - {file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1}, |
18 |
| - {file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1}, |
19 |
| - {file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n## [Unreleased] - ReleaseDate\n", exactly=1}, |
20 |
| - {file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/rust-lang/annotate-snippets-rs/compare/{{tag_name}}...HEAD", exactly=1}, |
| 4 | +[workspace.package] |
| 5 | +repository = "https://github.com/rust-lang/annotate-snippets-rs" |
| 6 | +license = "MIT OR Apache-2.0" |
| 7 | +edition = "2021" |
| 8 | +rust-version = "1.65.0" # MSRV |
| 9 | +include = [ |
| 10 | + "build.rs", |
| 11 | + "src/**/*", |
| 12 | + "Cargo.toml", |
| 13 | + "Cargo.lock", |
| 14 | + "LICENSE*", |
| 15 | + "README.md", |
| 16 | + "benches/**/*", |
| 17 | + "examples/**/*" |
21 | 18 | ]
|
22 | 19 |
|
23 |
| -[badges] |
24 |
| -maintenance = { status = "actively-developed" } |
25 |
| - |
26 |
| -[dependencies] |
27 |
| -anstyle = "1.0.4" |
28 |
| -memchr = { version = "2.7.4", optional = true } |
29 |
| -unicode-width = "0.1.11" |
30 |
| - |
31 |
| -[dev-dependencies] |
32 |
| -annotate-snippets = { path = ".", features = ["testing-colors"] } |
33 |
| -anstream = "0.6.13" |
34 |
| -difference = "2.0.0" |
35 |
| -divan = "0.1.14" |
36 |
| -glob = "0.3.1" |
37 |
| -serde = { version = "1.0.199", features = ["derive"] } |
38 |
| -snapbox = { version = "0.6.0", features = ["diff", "term-svg", "cmd", "examples"] } |
39 |
| -toml = "0.5.11" |
40 |
| -tryfn = "0.2.1" |
41 |
| - |
42 |
| -[[bench]] |
43 |
| -name = "bench" |
44 |
| -harness = false |
45 |
| - |
46 |
| -[[test]] |
47 |
| -name = "fixtures" |
48 |
| -harness = false |
49 |
| - |
50 |
| -[features] |
51 |
| -default = [] |
52 |
| -simd = ["memchr"] |
53 |
| -testing-colors = [] |
54 |
| - |
55 |
| -[lints.rust] |
| 20 | +[workspace.lints.rust] |
56 | 21 | rust_2018_idioms = { level = "warn", priority = -1 }
|
57 | 22 | unreachable_pub = "warn"
|
58 | 23 | unsafe_op_in_unsafe_fn = "warn"
|
59 | 24 | unused_lifetimes = "warn"
|
60 | 25 | unused_macro_rules = "warn"
|
61 | 26 | unused_qualifications = "warn"
|
62 | 27 |
|
63 |
| -[lints.clippy] |
| 28 | +[workspace.lints.clippy] |
64 | 29 | bool_assert_comparison = "allow"
|
65 | 30 | branches_sharing_code = "allow"
|
66 | 31 | checked_conversions = "warn"
|
@@ -115,6 +80,68 @@ string_lit_as_bytes = "warn"
|
115 | 80 | string_to_string = "warn"
|
116 | 81 | todo = "warn"
|
117 | 82 | trait_duplication_in_bounds = "warn"
|
| 83 | +uninlined_format_args = "warn" |
118 | 84 | verbose_file_reads = "warn"
|
119 | 85 | wildcard_imports = "warn"
|
120 | 86 | zero_sized_map_values = "warn"
|
| 87 | + |
| 88 | +[package] |
| 89 | +name = "annotate-snippets" |
| 90 | +version = "0.11.4" |
| 91 | +description = "Library for building code annotations" |
| 92 | +categories = [] |
| 93 | +keywords = ["code", "analysis", "ascii", "errors", "debug"] |
| 94 | +repository.workspace = true |
| 95 | +license.workspace = true |
| 96 | +edition.workspace = true |
| 97 | +rust-version.workspace = true |
| 98 | +include.workspace = true |
| 99 | + |
| 100 | +[package.metadata.docs.rs] |
| 101 | +all-features = true |
| 102 | +rustdoc-args = ["--cfg", "docsrs"] |
| 103 | + |
| 104 | +[package.metadata.release] |
| 105 | +tag-name = "{{version}}" |
| 106 | +pre-release-replacements = [ |
| 107 | + {file="CHANGELOG.md", search="Unreleased", replace="{{version}}", min=1}, |
| 108 | + {file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1}, |
| 109 | + {file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1}, |
| 110 | + {file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n## [Unreleased] - ReleaseDate\n", exactly=1}, |
| 111 | + {file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/rust-lang/annotate-snippets-rs/compare/{{tag_name}}...HEAD", exactly=1}, |
| 112 | +] |
| 113 | + |
| 114 | +[badges] |
| 115 | +maintenance = { status = "actively-developed" } |
| 116 | + |
| 117 | +[dependencies] |
| 118 | +anstyle = "1.0.4" |
| 119 | +memchr = { version = "2.7.4", optional = true } |
| 120 | +unicode-width = "0.1.11" |
| 121 | + |
| 122 | +[dev-dependencies] |
| 123 | +annotate-snippets = { path = ".", features = ["testing-colors"] } |
| 124 | +anstream = "0.6.13" |
| 125 | +difference = "2.0.0" |
| 126 | +divan = "0.1.14" |
| 127 | +glob = "0.3.1" |
| 128 | +serde = { version = "1.0.199", features = ["derive"] } |
| 129 | +snapbox = { version = "0.6.0", features = ["diff", "term-svg", "cmd", "examples"] } |
| 130 | +toml = "0.5.11" |
| 131 | +tryfn = "0.2.1" |
| 132 | + |
| 133 | +[[bench]] |
| 134 | +name = "bench" |
| 135 | +harness = false |
| 136 | + |
| 137 | +[[test]] |
| 138 | +name = "fixtures" |
| 139 | +harness = false |
| 140 | + |
| 141 | +[features] |
| 142 | +default = [] |
| 143 | +simd = ["memchr"] |
| 144 | +testing-colors = [] |
| 145 | + |
| 146 | +[lints] |
| 147 | +workspace = true |
0 commit comments