Skip to content

Commit 269e37b

Browse files
Update test-strategy requirement from 0.1 to 0.2
Updates the requirements on [test-strategy](https://github.com/frozenlib/test-strategy) to permit the latest version. - [Release notes](https://github.com/frozenlib/test-strategy/releases) - [Commits](https://github.com/frozenlib/test-strategy/commits) --- updated-dependencies: - dependency-name: test-strategy dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7e6d61e commit 269e37b

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

chain-addr/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ cryptoxide = "0.4"
1717

1818
quickcheck = { version = "0.9", optional = true }
1919
proptest = { git = "https://github.com/input-output-hk/proptest.git", optional = true }
20-
test-strategy = { version = "0.1", optional = true }
20+
test-strategy = { version = "0.2", optional = true }
2121

2222
[dev-dependencies]
2323
quickcheck = "0.9"
2424
chain-crypto = { path = "../chain-crypto", features = [ "property-test-api" ] }
2525
proptest = { git = "https://github.com/input-output-hk/proptest.git" }
26-
test-strategy = "0.1"
26+
test-strategy = "0.2"

chain-crypto/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ typed-bytes = { path = "../typed-bytes" }
2424
criterion = { version = "0.3.0", optional = true }
2525
quickcheck = { version = "0.9", optional = true }
2626
proptest = { git = "https://github.com/input-output-hk/proptest.git", optional = true }
27-
test-strategy = { version = "0.1", optional = true }
27+
test-strategy = { version = "0.2", optional = true }
2828

2929
[dev-dependencies]
3030
quickcheck = "0.9"
3131
proptest = { git = "https://github.com/input-output-hk/proptest.git" }
32-
test-strategy = "0.1"
32+
test-strategy = "0.2"
3333
rand = { version = "0.8", features = ["small_rng"] }
3434
smoke = "^0.2.1"
3535

chain-evm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ethereum-types = { version = "0.13.1", features = ["rlp"] }
2828
[dev-dependencies]
2929
rand = "0.7.3"
3030
proptest = "1.0.0"
31-
test-strategy = "0.1"
31+
test-strategy = "0.2"
3232
quickcheck = "0.9"
3333
evm-test-suite = { git = "https://github.com/input-output-hk/evm-test-suite.git"}
3434

chain-impl-mockchain/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ hex = { version = "0.4.2", default-features = false, features = [ "std" ] }
2323
quickcheck = { version = "0.9", optional = true }
2424
quickcheck_macros = { version = "0.9", optional = true }
2525
proptest = { git = "https://github.com/input-output-hk/proptest.git", optional = true }
26-
test-strategy = { version = "0.1", optional = true }
26+
test-strategy = { version = "0.2", optional = true }
2727
ed25519-bip32 = { version = "0.4.1", optional = true }
2828
thiserror = "1.0"
2929
lazy_static = { version = "1.3.0", optional = true }
@@ -54,7 +54,7 @@ evm = ["chain-evm", "proptest/evm"]
5454
quickcheck = "0.9"
5555
quickcheck_macros = "0.9"
5656
proptest = { git = "https://github.com/input-output-hk/proptest.git" }
57-
test-strategy = "0.1"
57+
test-strategy = "0.2"
5858
chain-core = { path = "../chain-core"}
5959
chain-crypto = { path = "../chain-crypto", features=["property-test-api"]}
6060
chain-time = { path = "../chain-time", features=["property-test-api"]}

chain-time/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ chain-core = { path = "../chain-core" }
1111

1212
quickcheck = { version = "0.9", optional = true }
1313
proptest = { git = "https://github.com/input-output-hk/proptest.git", optional = true }
14-
test-strategy = { version = "0.1", optional = true }
14+
test-strategy = { version = "0.2", optional = true }
1515

1616
[features]
1717
property-test-api = ["quickcheck", "proptest", "test-strategy"]
1818

1919
[dev-dependencies]
2020
quickcheck = "0.9"
2121
proptest = { git = "https://github.com/input-output-hk/proptest.git" }
22-
test-strategy = "0.1"
22+
test-strategy = "0.2"

imhamt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ license = "MIT OR Apache-2.0"
88
[dependencies]
99
thiserror = "1.0"
1010
proptest = { git = "https://github.com/input-output-hk/proptest.git", optional = true }
11-
test-strategy = { version = "0.1", optional = true }
11+
test-strategy = { version = "0.2", optional = true }
1212

1313
[dev-dependencies]
1414
criterion = "0.3.0"
1515
proptest = { git = "https://github.com/input-output-hk/proptest.git" }
16-
test-strategy = "0.1"
16+
test-strategy = "0.2"
1717
trybuild = "1"
1818

1919
[target.'cfg(unix)'.dev-dependencies]

sparse-array/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2021"
66

77
[dev-dependencies]
88
proptest = { git = "https://github.com/input-output-hk/proptest.git" }
9-
test-strategy = "0.1"
9+
test-strategy = "0.2"

0 commit comments

Comments
 (0)