Skip to content

Commit 0169c0a

Browse files
authored
chore: add metadata (#30)
1 parent 72741a2 commit 0169c0a

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

src/hstreamdb-pb/Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,18 @@ edition = "2021"
33
name = "hstreamdb-pb"
44
version = "0.1.0"
55

6-
[dependencies]
7-
workspace-hack = { version = "0.1", path = "../utils/workspace-hack" }
6+
license = "BSD-3-Clause"
7+
description = "Rust protocol library for HStreamDB"
8+
homepage = "https://hstream.io/"
9+
repository = "https://github.com/hstreamdb/hstreamdb-rust"
10+
readme = "README.md"
11+
keywords = ["hstreamdb", "streaming-database", "database-client"]
812

13+
[dependencies]
914
prost = "0.11.0"
1015
prost-types = "0.11.1"
1116
tonic = "0.8.0"
17+
workspace-hack = { version = "0.1", path = "../utils/workspace-hack" }
1218

1319
[build-dependencies]
1420
tonic-build = "0.8.0"

src/hstreamdb-pb/README.md

Whitespace-only changes.

src/hstreamdb/Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@ edition = "2021"
33
name = "hstreamdb"
44
version = "0.1.0"
55

6-
[dependencies]
7-
workspace-hack = { version = "0.1", path = "../utils/workspace-hack" }
6+
license = "BSD-3-Clause"
7+
description = "Rust client library for HStreamDB"
8+
homepage = "https://hstream.io/"
9+
repository = "https://github.com/hstreamdb/hstreamdb-rust"
10+
readme = "README.md"
11+
keywords = ["hstreamdb", "streaming-database", "database-client"]
812

13+
[dependencies]
914
thiserror = "1.0.34"
1015
log = "0.4.17"
1116

@@ -24,6 +29,7 @@ tokio = { version = "1.21.0", features = ["rt-multi-thread"] }
2429
tokio-stream = "0.1.9"
2530
tonic = "0.8.0"
2631
url = "2.2.2"
32+
workspace-hack = { version = "0.1", path = "../utils/workspace-hack" }
2733

2834
[dev-dependencies]
2935
hstreamdb-test-utils = { path = "../utils/hstreamdb-test-utils" }

src/hstreamdb/README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)