Skip to content

Commit 5f1c95f

Browse files
authored
Require rand 0.9 due to API change, update version to 0.2.3-alpha (#18)
Signed-off-by: declark1 <[email protected]>
1 parent fb2310c commit 5f1c95f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ mocktail is a **minimal** crate for mocking HTTP and gRPC servers in Rust with s
2121
1. Add `mocktail` to `Cargo.toml` as a development dependency:
2222
```toml
2323
[dev-dependencies]
24-
mocktail = { git = "https://github.com/IBM/mocktail.git", version = "0.2.2-alpha" }
24+
mocktail = { git = "https://github.com/IBM/mocktail.git", version = "0.2.3-alpha" }
2525
```
2626

2727
2. For now, see [examples](/mocktail-tests/tests/examples) in the `mocktail-tests` crate. Additional documentation coming soon.

mocktail/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mocktail"
3-
version = "0.2.2-alpha"
3+
version = "0.2.3-alpha"
44
edition = "2021"
55
authors = ["Dan Clark"]
66
description = "HTTP & gRPC server mocking for Rust"
@@ -25,7 +25,7 @@ http-body-util = "0"
2525
hyper = { version = "1", features = ["http1", "http2", "server"] }
2626
hyper-util = { version = "0", features = ["tokio", "server-auto"] }
2727
prost = "0"
28-
rand = "0"
28+
rand = "0.9"
2929
serde = "1"
3030
serde_json = "1"
3131
thiserror = "2"

0 commit comments

Comments
 (0)