Skip to content

Commit 07ca9a6

Browse files
authored
Merge pull request #103 from silicon-heaven/dependabot/cargo/cargo-deps-7a1ea13de0
Bump the cargo-deps group with 3 updates
2 parents 291c413 + c57e88d commit 07ca9a6

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ name = "historyprovider"
33
description = "historyprovider-rs"
44
license = "MIT"
55
repository = "https://github.com/silicon-heaven/historyprovider-rs"
6-
version = "2.7.11"
6+
version = "2.7.12"
77
edition = "2024"
88

99
[[bin]]
1010
name = "hp"
1111

1212
[dependencies]
1313
tokio = { version = "1.50.0", features = ["io-util", "macros", "net", "rt", "rt-multi-thread", "signal", "sync", "time"], default-features = false }
14-
shvproto = "6.1.4"
15-
shvrpc = { version = "14.0", features = ["journal"] }
16-
shvclient = { version = "3.0", features = ["tokio"] }
14+
shvproto = "6.1.5"
15+
shvrpc = { version = "15.0", features = ["journal"] }
16+
shvclient = { version = "4.2", features = ["tokio"] }
1717
futures = "0.3.32"
1818
log = "0.4.29"
1919
clap = { version = "4.6.0", features = ["derive"] }
@@ -42,5 +42,5 @@ size = { version = "0.5.0", features = ["serde"] }
4242
[dev-dependencies]
4343
async-broadcast = "0.7.2"
4444
async-trait = "0.1.80"
45-
shvclient = { version = "3.0", features = ["mocking", "tokio"] }
45+
shvclient = { version = "4.2", features = ["mocking", "tokio"] }
4646
tempfile = "3.27.0"

src/dirtylog.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ pub(crate) async fn dirtylog_task(
275275
value: data_change.value,
276276
access_level: AccessLevel::Read as _,
277277
short_time: data_change.short_time.unwrap_or(-1),
278-
user_id: Default::default(),
278+
user_id: shvproto::RpcValue::null(),
279279
repeat: !data_change.value_flags.contains(ValueFlags::SPONTANEOUS),
280280
provisional: true, // data_change.value_flags & (1 << VALUE_FLAG_PROVISIONAL_BIT) != 0,
281281
};
@@ -417,7 +417,7 @@ mod tests {
417417
value: 20.into(),
418418
access_level: 8,
419419
short_time: -1,
420-
user_id: None,
420+
user_id: shvproto::RpcValue::null(),
421421
repeat: true,
422422
provisional: true
423423
}],
@@ -441,7 +441,7 @@ mod tests {
441441
value: 20.into(),
442442
access_level: 8,
443443
short_time: -1,
444-
user_id: None,
444+
user_id: shvproto::RpcValue::null(),
445445
repeat: true,
446446
provisional: true
447447
}],

src/getlog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ mod tests {
366366
access_level: 32,
367367
source: "".to_string(),
368368
value: value.into(),
369-
user_id: None,
369+
user_id: RpcValue::null(),
370370
repeat: false,
371371
provisional: false,
372372
})

0 commit comments

Comments
 (0)