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: CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
23
23
24
24
## 0.4.0
25
25
26
-
- Migration to stable (rust 1.39+) async/await
26
+
- Migration to stable (rust 1.40+) async/await
27
27
- Transaction aren't cloned anymore, they are shared by reference. Commit/cancel/reset api requires owned/mutable access to a Transaction. This protect against undefined behavior that was previously possible (cancel/reset) data races.
28
28
- No more indirection within FdbFuture. Returned future give you direct access to the result.
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,11 @@
7
7
8
8
The repo consists of multiple crates
9
9
10
-
| Library | Status | Description |
11
-
|---------|--------|-------------|
12
-
|[**foundationdb**](foundationdb/README.md)|[](https://crates.io/crates/foundationdb)[](https://docs.rs/foundationdb)| High level FoundationDB client API |
13
-
|[**foundationdb-sys**](foundationdb-sys/README.md)|[](https://crates.io/crates/foundationdb-sys)[](https://docs.rs/foundationdb-sys)| C API bindings for FoundationDB |
14
-
|**foundationdb-gen**| n/a | Code generator for common options and types of FoundationDB |
|[**foundationdb**](foundationdb/README.md)|[](https://crates.io/crates/foundationdb)[](https://docs.rs/foundationdb)| High level FoundationDB client API|
13
+
|[**foundationdb-sys**](foundationdb-sys/README.md)|[](https://crates.io/crates/foundationdb-sys)[](https://docs.rs/foundationdb-sys)| C API bindings for FoundationDB |
14
+
|**foundationdb-gen**| n/a| Code generator for common options and types of FoundationDB |
15
15
16
16
The current version requires rustc 1.40+ to work (async/await feature).
17
17
The previous version (0.3) is still maintained and is available within the 0.3 branch.
@@ -22,8 +22,8 @@ You can access the `master` branch documentation [here](https://clikengo.github.
22
22
23
23
Licensed under either of
24
24
25
-
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
26
-
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
25
+
- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
26
+
- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
0 commit comments