Skip to content

Commit 225090e

Browse files
authored
fix: faststr compile needs to enable serde feature && update dep to latest (#493)
1 parent 27bb5b0 commit 225090e

File tree

10 files changed

+302
-247
lines changed

10 files changed

+302
-247
lines changed

Cargo.lock

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

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ chrono = { version = "0.4", default-features = false, features = [
4949
clap = "4"
5050
colored = "2"
5151
cookie = "0.18"
52-
dashmap = "5"
52+
dashmap = "6"
5353
dirs = "5"
54-
faststr = "0.2.19"
54+
faststr = { version = "0.2.21", features = ["serde"] }
5555
futures = "0.3"
5656
futures-util = "0.3"
5757
flate2 = "1"
@@ -77,7 +77,7 @@ matchit = "0.8"
7777
memchr = "2"
7878
mime = "0.3"
7979
mime_guess = { version = "2", default-features = false }
80-
mockall = "0.12"
80+
mockall = "0.13"
8181
mockall_double = "0.3"
8282
mur3 = "0.1"
8383
nix = "0.29"
@@ -107,7 +107,7 @@ simdutf8 = "0.1"
107107
socket2 = "0.5"
108108
sonic-rs = "0.3"
109109
syn = "2"
110-
sysinfo = "0.30"
110+
sysinfo = "0.31"
111111
tempfile = "3"
112112
thiserror = "1"
113113
tokio = "1"
@@ -116,7 +116,7 @@ tokio-test = "0.4"
116116
tokio-util = "0.7"
117117
tonic = "0.12"
118118
tonic-web = "0.12"
119-
tower = "0.4"
119+
tower = "0.5"
120120
tracing = "0.1"
121121
tracing-subscriber = "0.3"
122122
update-informer = "1"

benchmark/src/perf/cpu.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ pub async fn record_usage(cpu_usage_list: &mut Vec<f32>, cancel: CancellationTok
8181
loop {
8282
tokio::select! {
8383
_ = tokio::time::sleep(DEFAULT_INTERVAL) => {
84-
system.refresh_process_specifics(pid, ProcessRefreshKind::new().with_cpu());
84+
system.refresh_processes_specifics(sysinfo::ProcessesToUpdate::Some(&[pid]), ProcessRefreshKind::new().with_cpu());
8585
let cpu_usage = system
8686
.process(pid)
8787
.unwrap()

benchmark/src/perf/mem.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub async fn record_usage(mem_usage_list: &mut Vec<u64>, cancel: CancellationTok
5353
loop {
5454
tokio::select! {
5555
_ = tokio::time::sleep(DEFAULT_INTERVAL) => {
56-
system.refresh_process_specifics(pid, ProcessRefreshKind::new().with_memory());
56+
system.refresh_processes_specifics(sysinfo::ProcessesToUpdate::Some(&[pid]), ProcessRefreshKind::new().with_memory());
5757
let mem_usage = system
5858
.process(pid)
5959
.unwrap()

volo-build/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-build"
3-
version = "0.10.13"
3+
version = "0.10.14"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true

volo-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-cli"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true

volo-grpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-grpc"
3-
version = "0.10.3"
3+
version = "0.10.4"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true

volo-http/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-http"
3-
version = "0.2.13"
3+
version = "0.2.14"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true

volo-thrift/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo-thrift"
3-
version = "0.10.3"
3+
version = "0.10.4"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true

volo/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volo"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
edition.workspace = true
55
homepage.workspace = true
66
repository.workspace = true

0 commit comments

Comments
 (0)