Skip to content

Commit e1d0cca

Browse files
authored
release new ver (#87)
1 parent 2c55fda commit e1d0cca

File tree

10 files changed

+31
-36
lines changed

10 files changed

+31
-36
lines changed

Cargo.lock

+3-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/hstreamdb-pb/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ readme = "README.md"
1111
keywords = ["hstreamdb", "streaming-database", "database-client"]
1212

1313
[dependencies]
14-
prost = "0.11.0"
15-
prost-types = "0.11.1"
16-
tonic = "0.8.2"
14+
prost = "0.11.5"
15+
prost-types = "0.11.5"
16+
tonic = "0.8.3"
1717
workspace-hack = { version = "0.1", path = "../utils/workspace-hack" }
1818

1919
[build-dependencies]
20-
tonic-build = "0.8.0"
20+
tonic-build = "0.8.4"

src/hstreamdb/Cargo.toml

+12-12
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,29 @@ readme = "README.md"
1111
keywords = ["hstreamdb", "streaming-database", "database-client"]
1212

1313
[dependencies]
14-
thiserror = "1.0.34"
14+
thiserror = "1.0.38"
1515
log = "0.4.17"
1616

17-
flate2 = "1.0.24"
17+
flate2 = "1.0.25"
1818
zstd = "0.11.2"
1919

2020
num-bigint = "0.4.3"
2121
num-traits = "0.2.15"
22-
md-5 = "0.10.1"
22+
md-5 = "0.10.5"
2323

24-
hstreamdb-pb = { version = "0.2.0", path = "../hstreamdb-pb/" }
25-
prost-types = "0.11.1"
24+
hstreamdb-pb = { version = "0.2.1", path = "../hstreamdb-pb/" }
25+
prost-types = "0.11.5"
2626

27-
prost = "0.11.0"
28-
tokio = { version = "1.21.0", features = ["rt-multi-thread", "parking_lot"] }
29-
tokio-stream = "0.1.9"
30-
tonic = { version = "0.8.2", features = ["tls"] }
31-
url = "2.2.2"
27+
prost = "0.11.5"
28+
tokio = { version = "1.23.0", features = ["rt-multi-thread", "parking_lot"] }
29+
tokio-stream = "0.1.11"
30+
tonic = { version = "0.8.3", features = ["tls"] }
31+
url = "2.3.1"
3232
workspace-hack = { version = "0.1", path = "../utils/workspace-hack" }
3333

3434
[dev-dependencies]
3535
hstreamdb-test-utils = { path = "../utils/hstreamdb-test-utils" }
3636

37-
anyhow = "1.0.62"
38-
env_logger = "0.9.0"
37+
anyhow = "1.0.68"
38+
env_logger = "0.9.3"
3939
rand = "0.8.5"

src/hstreamdb/src/flow_controller.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ mod tests {
148148
.unwrap();
149149

150150
tokio::spawn(async move {
151-
let mut appender = appender;
151+
let appender = appender;
152152
for _ in 0..5000 {
153153
appender
154154
.append(Record {

src/hstreamdb/tests/consumer_test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ async fn test_consumer() {
6565
for _ in 0..10 {
6666
let appender = appender.clone();
6767
let join_handle = tokio::spawn(async move {
68-
let mut appender = appender;
68+
let appender = appender;
6969
let mut results = Vec::new();
7070

7171
for _ in 0..100 {

src/hstreamdb/tests/producer_test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ async fn test_producer() {
5353
for _ in 0..10 {
5454
let appender = appender.clone();
5555
let join_handle = tokio::spawn(async move {
56-
let mut appender = appender;
56+
let appender = appender;
5757
let mut results = Vec::new();
5858

5959
for _ in 0..100 {

src/utils/hstreamdb-test-utils/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ edition = "2021"
55

66
[dependencies]
77
log = "0.4.17"
8-
env_logger = "0.9.0"
8+
env_logger = "0.9.3"
99

10-
anyhow = "1.0.62"
10+
anyhow = "1.0.68"
1111
rand = "0.8.5"
1212
workspace-hack = { version = "0.1", path = "../workspace-hack" }

src/utils/workspace-hack/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@ publish = false
1515
### BEGIN HAKARI SECTION
1616
[dependencies]
1717
bytes = { version = "1", features = ["std"] }
18-
getrandom = { version = "0.2", default-features = false, features = ["js", "js-sys", "rdrand", "std", "wasm-bindgen"] }
1918
indexmap = { version = "1", default-features = false, features = ["std"] }
2019
log = { version = "0.4", default-features = false, features = ["std"] }
2120
prost = { version = "0.11", features = ["prost-derive", "std"] }
2221
prost-types = { version = "0.11", features = ["std"] }
2322
rand = { version = "0.8", features = ["alloc", "getrandom", "libc", "rand_chacha", "small_rng", "std", "std_rng"] }
2423
regex = { version = "1", features = ["aho-corasick", "memchr", "perf", "perf-cache", "perf-dfa", "perf-inline", "perf-literal", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"] }
2524
regex-syntax = { version = "0.6", features = ["unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"] }
26-
tokio = { version = "1", features = ["bytes", "io-std", "io-util", "libc", "macros", "memchr", "mio", "net", "num_cpus", "once_cell", "parking_lot", "rt", "rt-multi-thread", "socket2", "sync", "time", "tokio-macros"] }
25+
tokio = { version = "1", features = ["bytes", "io-std", "io-util", "libc", "macros", "memchr", "mio", "net", "num_cpus", "parking_lot", "rt", "rt-multi-thread", "socket2", "sync", "time", "tokio-macros"] }
2726
tonic = { version = "0.8", features = ["async-trait", "axum", "channel", "codegen", "h2", "hyper", "hyper-timeout", "prost", "prost-derive", "prost1", "rustls-pemfile", "tls", "tokio", "tokio-rustls", "tower", "tracing-futures", "transport"] }
2827

2928
[build-dependencies]

src/x/hstreamdb-erl-nifs/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ workspace-hack = { version = "0.1", path = "../../utils/workspace-hack" }
1111
hstreamdb = { path = "../../hstreamdb" }
1212

1313
log = "0.4.17"
14-
env_logger = "0.9.0"
14+
env_logger = "0.9.3"
1515

16-
once_cell = "1.14.0"
16+
once_cell = "1.17.0"
1717
rustler = "0.26.0"
18-
tokio = { version = "1.21.0", features = ["rt-multi-thread", "parking_lot"] }
18+
tokio = { version = "1.23.0", features = ["rt-multi-thread", "parking_lot"] }
1919
tokio-stream = "0.1.11"
2020

21-
prost = "0.11.0"
22-
tonic = "0.8.2"
21+
prost = "0.11.5"
22+
tonic = "0.8.3"

src/x/hstreamdb-erl-nifs/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ rustler::atoms! {
3333
create_stream_reply,
3434
create_subscription_reply,
3535
earliest, latest,
36-
start_producer_reply, stop_producer_reply,
36+
start_producer_reply,
3737
append_reply, await_append_result_reply,
3838
start_streaming_fetch_reply, streaming_fetch,
3939
ack_reply,

0 commit comments

Comments
 (0)