Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.

Commit 5429395

Browse files
authored
Bump dependencies and stop specifying the version in path dependencies (#15)
1 parent d291c10 commit 5429395

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ rust-version.workspace = true
1010
exclude = ["/.github", ".gitignore", "/scripts"]
1111

1212
[dependencies]
13-
axum = { version = "0.6.4", features = ["headers"] }
13+
axum = { version = "0.6.7", features = ["headers"] }
1414
base64ct = { version = "1.5.3", features = ["std"] }
1515
bytes = "1.4.0"
1616
headers = "0.3.8"
1717
mime = "0.3.16"
1818
sha2 = "0.10.6"
19-
time = "0.3.17"
19+
time = "0.3.19"
2020
tokio = { version = "1.25.0", features = ["sync", "time"] }
2121
tower = { version = "0.4.13", features = ["util"] }
2222
tower-http = { version = "0.3.5", features = ["cors", "limit", "set-header"] }
2323
tracing = "0.1.37"
2424
ulid = { version = "1.0.0", features = ["serde"] }
2525

2626
[dev-dependencies]
27-
hyper = "0.14.23"
27+
hyper = "0.14.24"
2828
tokio = { version = "1.25.0", features = ["macros", "rt", "test-util"] }
2929

3030
[workspace]

server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ rust-version.workspace = true
1010

1111
[dependencies]
1212
bytesize = "1.1.0"
13-
clap = { version = "4.1.4", features = ["derive", "env"] }
13+
clap = { version = "4.1.6", features = ["derive", "env"] }
1414
humantime = "2.1.0"
15-
hyper = { version = "0.14.23", features = ["server"] }
15+
hyper = { version = "0.14.24", features = ["server"] }
1616
tokio = { version = "1.25.0", features = ["macros", "rt-multi-thread", "signal"] }
1717
tracing = "0.1.37"
1818
tracing-subscriber = "0.3.16"
1919

20-
matrix-http-rendezvous = { path = "../", version = "0.1.10" }
20+
matrix-http-rendezvous = { path = "../" }

synapse/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ name = "matrix_http_rendezvous_synapse"
1414
crate-type = ["cdylib"]
1515

1616
[dependencies]
17-
anyhow = "1.0.68"
17+
anyhow = "1.0.69"
1818
bytesize = { version = "1.1.0", features = ["serde"] }
1919
http-body = "0.4.5"
2020
humantime = "2.1.0"
2121
humantime-serde = "1.1.1"
22-
pyo3 = { version = "0.18.0", features = ["extension-module", "abi3-py37", "anyhow"] }
22+
pyo3 = { version = "0.18.1", features = ["extension-module", "abi3-py37", "anyhow"] }
2323
pyo3-asyncio = "0.18.0"
2424
pyo3-log = "0.8.1"
2525
pyo3-matrix-synapse-module = "0.1.2"
@@ -28,4 +28,4 @@ tokio = "1.25.0"
2828
tower = { version = "0.4.13", features = ["util"] }
2929
tracing = { version = "0.1.37", features = ["log", "log-always"] }
3030

31-
matrix-http-rendezvous = { path = "../", version = "0.1.10" }
31+
matrix-http-rendezvous = { path = "../" }

0 commit comments

Comments
 (0)