Skip to content

Commit cedcbfd

Browse files
authored
[Salvo] Update version to 0.63.x (#8637)
1 parent 23be80b commit cedcbfd

9 files changed

+13
-13
lines changed

frameworks/Rust/salvo/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@ anyhow = "1"
4040
async-trait = "0.1"
4141
bytes = "1"
4242
diesel = { version = "2", features = ["postgres", "r2d2"] }
43-
deadpool = { version = "0.9", features = ["rt_tokio_1", "serde", "async-trait", "managed"] }
44-
deadpool-postgres = "0.10"
43+
deadpool = { version = "0.10", features = ["rt_tokio_1", "serde", "async-trait", "managed"] }
44+
deadpool-postgres = "0.11"
4545
futures-util = "0.3"
46-
lru = "0.11.0"
47-
markup = "0.13"
46+
lru = "0.12.0"
47+
markup = "0.15"
4848
# mimalloc = { version = "0.1", default-features = false }
4949
mongodb = { version = "2.4.0", features = ["zstd-compression", "snappy-compression", "zlib-compression"] }
5050
once_cell = "1"
5151
rand = { version = "0.8", features = ["min_const_gen", "small_rng"] }
52-
salvo = { version = "0.55", default-features = false, features = ["anyhow", "http1", "affix"] }
52+
salvo = { version = "0.63", default-features = false, features = ["anyhow", "http1", "affix"] }
5353
serde = { version = "1", features = ["derive"] }
5454
serde_json = "1"
5555
# smallvec = "1"

frameworks/Rust/salvo/salvo-diesel.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.72
1+
FROM rust:1.74
22

33
ENV TECHEMPOWER_POSTGRES_URL=postgres://benchmarkdbuser:benchmarkdbpass@tfb-database/hello_world
44
ENV TECHEMPOWER_MAX_POOL_SIZE=28

frameworks/Rust/salvo/salvo-lru.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.72
1+
FROM rust:1.74
22

33
ENV TECHEMPOWER_POSTGRES_URL=postgres://benchmarkdbuser:benchmarkdbpass@tfb-database/hello_world
44

frameworks/Rust/salvo/salvo-mongo-raw.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.72
1+
FROM rust:1.74
22

33
ENV TECHEMPOWER_MONGODB_URL=mongodb://tfb-database:27017
44
ENV TECHEMPOWER_MAX_POOL_SIZE=28

frameworks/Rust/salvo/salvo-mongo.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.72
1+
FROM rust:1.74
22

33
ENV TECHEMPOWER_MONGODB_URL=mongodb://tfb-database:27017
44
ENV TECHEMPOWER_MAX_POOL_SIZE=28

frameworks/Rust/salvo/salvo-pg-pool.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.72
1+
FROM rust:1.74
22

33
ENV TECHEMPOWER_POSTGRES_URL=postgres://benchmarkdbuser:benchmarkdbpass@tfb-database/hello_world
44
ENV TECHEMPOWER_MAX_POOL_SIZE=28

frameworks/Rust/salvo/salvo-pg.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.72
1+
FROM rust:1.74
22

33
ENV TECHEMPOWER_POSTGRES_URL=postgres://benchmarkdbuser:benchmarkdbpass@tfb-database/hello_world
44

frameworks/Rust/salvo/salvo-sqlx.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.72
1+
FROM rust:1.74
22

33
ENV TECHEMPOWER_POSTGRES_URL=postgres://benchmarkdbuser:benchmarkdbpass@tfb-database/hello_world
44
ENV TECHEMPOWER_MAX_POOL_SIZE=56

frameworks/Rust/salvo/salvo.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.72
1+
FROM rust:1.74
22

33
ADD ./ /salvo
44
WORKDIR /salvo

0 commit comments

Comments
 (0)