Skip to content

Commit 8b86362

Browse files
authored
Merge pull request #39 from yumemi-inc/feat/axum-0.7
feat: Upgrade axum to 0.7
2 parents 0d11a0e + 50c10e1 commit 8b86362

File tree

4 files changed

+125
-69
lines changed

4 files changed

+125
-69
lines changed

Cargo.lock

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

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[workspace]
2+
resolver = "2"
23
members = [
34
"axum",
45
"core",

axum/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ruice-axum"
33
description = "Injects services in a ruice container into axum controllers."
4-
version = "0.1.2"
4+
version = "0.2.0"
55
edition = "2021"
66
rust-version = "1.67.1"
77
license = "MIT"
@@ -12,8 +12,8 @@ authors = [
1212
]
1313

1414
[dependencies]
15-
ruice = { path = "../core", version = "=0.1.2" }
15+
ruice = { path = "../core", version = "=0.2.0" }
1616

1717
async-trait = "0.1.74"
18-
axum = "0.6.20"
18+
axum = "0.7.1"
1919
thiserror = "1.0"

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ruice"
33
description = "Runtime based dependency injection for Rust."
4-
version = "0.1.2"
4+
version = "0.2.0"
55
edition = "2021"
66
rust-version = "1.67.1"
77
license = "MIT"

0 commit comments

Comments
 (0)