You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ Put this in your Cargo.toml:
54
54
55
55
```rust
56
56
[dependencies]
57
-
raft-engine="0.2.0"
57
+
raft-engine="0.3.0"
58
58
```
59
59
60
60
Available Cargo features:
@@ -74,13 +74,13 @@ Contributions are always welcome! Here are a few tips for making a PR:
74
74
- All commits must be signed off (with `git commit -s`) to pass the [DCO check](https://probot.github.io/apps/dco/).
75
75
- Tests are automatically run against the changes, some of them can be run locally:
76
76
77
-
```
78
-
# rustup default nightly
77
+
```bash
78
+
#run tests with nightly features
79
79
make
80
-
# rustup default stable
81
-
env WITH_STABLE_TOOLCHAIN=true make
80
+
#run tests on stable toolchain
81
+
make WITH_STABLE_TOOLCHAIN=force
82
82
# filter a specific test case
83
-
env EXTRA_CARGO_ARGS=<testname> make test
83
+
make testEXTRA_CARGO_ARGS=<testname>
84
84
```
85
85
86
86
- For changes that might induce performance effects, please quote the targeted benchmark results in the PR description. In addition to micro-benchmarks, there is a standalone [stress test tool](https://github.com/tikv/raft-engine/tree/master/stress) which you can use to demonstrate the system performance.
0 commit comments