Skip to content

Commit 063c9ce

Browse files
authored
Merge branch 'TechEmpower:master' into master
2 parents a032736 + ce686f7 commit 063c9ce

File tree

5 files changed

+52
-81
lines changed

5 files changed

+52
-81
lines changed

frameworks/Java/microhttp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>com.fasterxml.jackson.core</groupId>
2626
<artifactId>jackson-core</artifactId>
27-
<version>2.13.3</version>
27+
<version>2.15.0</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>com.fasterxml.jackson.core</groupId>

frameworks/Java/ninja-standalone/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>com.fasterxml.jackson.core</groupId>
5353
<artifactId>jackson-core</artifactId>
54-
<version>2.13.0</version>
54+
<version>2.15.0</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>com.fasterxml.jackson.module</groupId>

frameworks/Rust/axum/Cargo.lock

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

frameworks/Rust/axum/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ simd-json = [
3939
]
4040

4141
[dependencies]
42-
axum = { version = "0.8.3", default-features = false, features = [
42+
axum = { version = "0.8.4", default-features = false, features = [
4343
"json",
4444
"query",
4545
"http1",
@@ -56,32 +56,32 @@ mongodb = { version = "3.2.3", features = [
5656
"zlib-compression",
5757
] }
5858
num_cpus = "1.16.0"
59-
rand = { version = "0.9.0", features = ["small_rng"] }
59+
rand = { version = "0.9.1", features = ["small_rng"] }
6060
serde = { version = "1.0.219", features = ["derive"] }
6161
serde_json = "1.0.140"
62-
sqlx = { version = "0.8.3", features = [
62+
sqlx = { version = "0.8.5", features = [
6363
"postgres",
6464
"macros",
6565
"runtime-tokio",
6666
"tls-rustls",
6767
] }
68-
tokio = { version = "1.44.2", features = ["full"] }
68+
tokio = { version = "1.45.0", features = ["full"] }
6969
tokio-pg-mapper = { version = "0.2.0" }
7070
tokio-pg-mapper-derive = { version = "0.2.0" }
7171
tokio-postgres = { version = "0.7.13" }
7272
tower = { version = "0.5.2", features = ["util"] }
73-
tower-http = { version = "0.6.2", features = ["set-header"] }
73+
tower-http = { version = "0.6.4", features = ["set-header"] }
7474
yarte = "0.15.7"
75-
simd-json = { version = "0.15.0", optional = true }
75+
simd-json = { version = "0.15.1", optional = true }
7676
axum-core = { version = "0.5.2", optional = true }
7777
mime = { version = "0.3.17", optional = true }
7878
bytes = { version = "1.10.1", optional = true }
7979
serde_path_to_error = { version = "0.1.17", optional = true }
8080
socket2 = "0.5.9"
8181
hyper = { version = "1.6", features = ["server", "http1"] }
8282
hyper-util = { version = "0.1", features = ["tokio", "server-auto", "http1"] }
83-
quick_cache = "0.6.12"
84-
mimalloc = "0.1.45"
83+
quick_cache = "0.6.14"
84+
mimalloc = "0.1.46"
8585

8686

8787
[profile.release]

frameworks/Rust/axum/axum.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ ENV POSTGRES_URL=postgres://benchmarkdbuser:benchmarkdbpass@tfb-database/hello_w
1717
ENV POSTGRES_MIN_POOL_SIZE=56
1818
ENV POSTGRES_MAX_POOL_SIZE=56
1919
ENV MONGODB_URL=mongodb://tfb-database:27017
20-
ENV MONGODB_MIN_POOL_SIZE=28
21-
ENV MONGODB_MAX_POOL_SIZE=28
20+
ENV MONGODB_MIN_POOL_SIZE=56
21+
ENV MONGODB_MAX_POOL_SIZE=56
2222
COPY --from=builder /build/target/release/axum* /app/
2323
EXPOSE 8000
2424
CMD ["/app/axum"]

0 commit comments

Comments
 (0)