Skip to content

Commit cfe97b9

Browse files
committed
chore: fdb v0.2.0 release
This is the first release of FoundationDB Client API for Tokio.
1 parent ff13974 commit cfe97b9

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

fdb-gen/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
[package]
22
name = "fdb-gen"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2018"
55
authors = ["fdb-rs Developers"]
66
description = """
77
Binding generation helper for FoundationDB
88
"""
99
license = "MIT OR Apache-2.0"
10+
repository = "https://github.com/fdb-rs/fdb"
11+
keywords = ["foundationdb", "tokio"]
12+
categories = ["database", "external-ffi-bindings"]
13+
14+
[package.metadata.docs.rs]
15+
features = ["fdb-6_3"]
1016

1117
[features]
1218
default = []

fdb-sys/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
[package]
22
name = "fdb-sys"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2018"
55
authors = ["fdb-rs Developers"]
66
description = """
77
Binding to the C APIs for FoundationDB
88
"""
99
license = "MIT OR Apache-2.0"
10+
repository = "https://github.com/fdb-rs/fdb"
11+
keywords = ["foundationdb", "tokio"]
12+
categories = ["database", "external-ffi-bindings"]
13+
14+
[package.metadata.docs.rs]
15+
features = ["fdb-6_3"]
1016

1117
[features]
1218
default = []

fdb/Cargo.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11
[package]
22
name = "fdb"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2018"
55
authors = ["fdb-rs Developers"]
66

77
description = """
88
FoundationDB Client API for Tokio
99
"""
1010
license = "MIT OR Apache-2.0"
11+
repository = "https://github.com/fdb-rs/fdb"
12+
keywords = ["foundationdb", "tokio"]
13+
categories = ["api-bindings", "database"]
14+
15+
[package.metadata.docs.rs]
16+
features = ["fdb-6_3"]
1117

1218
[features]
1319
default = []
1420
fdb-6_3 = ["fdb-gen/fdb-6_3", "fdb-sys/fdb-6_3"]
1521

1622
[dependencies]
1723
bytes = "1"
18-
fdb-sys = { version = "0.1.0", path = "../fdb-sys", default-features = false }
24+
fdb-sys = { version = "0.2.0", path = "../fdb-sys", default-features = false }
1925
futures = "0.3"
2026
nom = "7"
2127
num-bigint = "0.4"
@@ -30,4 +36,4 @@ impls = "1"
3036
libc = "0.2"
3137

3238
[build-dependencies]
33-
fdb-gen = { version = "0.1.0", path = "../fdb-gen", default-features = false }
39+
fdb-gen = { version = "0.2.0", path = "../fdb-gen", default-features = false }

0 commit comments

Comments
 (0)