Skip to content

Commit 8f41ada

Browse files
Remove more problematic version attributes for internal dependencies
1 parent 243647a commit 8f41ada

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ compact_str = { version = "^0.9.0", default-features = false }
113113
chrono = { version = "^0.4.42", default-features = false, features = ["alloc"] }
114114
divan = "^0.1.21"
115115
eyre = "^0.6.12"
116-
facet = { path = "facet", version = "^0.42.0" }
117116
http = "^1.4.0"
118117
indexmap = { version = "^2.12.1", default-features = false }
119118
indextree = "^4.7.4"

facet-assert/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ rustdoc-args = ["--html-in-header", "arborium-header.html"]
1919
facet-core = { path = "../facet-core", version = "0.42.0" }
2020
facet-diff = { path = "../facet-diff", version = "0.42.0" }
2121
facet-diff-core = { path = "../facet-diff-core", version = "0.42.0" }
22-
facet-reflect = { path = "../facet-reflect", version = "0.42.0", features = ["miette"] }
22+
facet-reflect = { path = "../facet-reflect", features = ["miette"] }
2323

2424
[dev-dependencies]
2525
facet = { path = "../facet" }

facet-macros-impl/src/process_struct.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -797,8 +797,6 @@ pub(crate) fn gen_field_from_pfield(
797797
.iter()
798798
.map(|doc| doc.as_str().replace("\\\"", "\""))
799799
.collect();
800-
#[cfg(not(feature = "doc"))]
801-
let doc_lines: Vec<String> = Vec::new();
802800

803801
// Check if this field is marked as a recursive type
804802
let is_recursive = field.attrs.has_builtin("recursive_type");

facet-validate/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ facet = { path = "../facet", version = "0.42.0" }
2121
regex = { version = "1", default-features = false, features = ["std"] }
2222

2323
[dev-dependencies]
24-
facet-json = { path = "../facet-json", version = "0.42.0", features = ["validate"] }
24+
facet-json = { path = "../facet-json", features = ["validate"] }
2525

2626
[lints]
2727
workspace = true

0 commit comments

Comments
 (0)