Skip to content

Commit ddb4ded

Browse files
fix(smith): bump minimum arbitrary version (#1007)
apollo-smith uses the `.choose_iter()` method, which was introduced in arbitrary v1.4.0. If used in a project that already depends on an older version of arbitrary, you could have problems. I ran into this when I pulled the latest changes into a very old clone of the repo and ran tests: I still had 1.3.0 installed so compilation failed.
1 parent 9399cea commit ddb4ded

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/apollo-smith/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ categories = [
2424
[dependencies]
2525
apollo-compiler = { path = "../apollo-compiler", version = "1.25.0" }
2626
apollo-parser = { path = "../apollo-parser", version = "0.8.0" }
27-
arbitrary = { version = "1.3.0", features = ["derive"] }
27+
arbitrary = { version = "1.4.0", features = ["derive"] }
2828
indexmap = "2.0.0"
2929
once_cell = "1.9.0"
3030
serde_json_bytes = "0.2.5"

0 commit comments

Comments
 (0)