Skip to content

Commit 85104f1

Browse files
authored
Merge pull request #2 from matrix-org/quenting/dependabot-and-bump
2 parents 925d495 + 1c170ff commit 85104f1

File tree

5 files changed

+27
-15
lines changed

5 files changed

+27
-15
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "cargo"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "daily"

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
axum = { version = "0.6.0-rc.1", features = ["headers"] }
7+
axum = { version = "0.6.0-rc.2", features = ["headers"] }
88
base64ct = { version = "1.5.2", features = ["std"] }
99
bytes = "1.2.1"
1010
headers = "0.3.8"
11-
mime = "0.3.14"
12-
sha2 = "0.10.5"
13-
time = "0.3.14"
14-
tokio = { version = "1.21.0", features = ["sync", "time"] }
11+
mime = "0.3.16"
12+
sha2 = "0.10.6"
13+
time = "0.3.15"
14+
tokio = { version = "1.21.2", features = ["sync", "time"] }
1515
tower = { version = "0.4.13", features = ["util"] }
1616
tower-http = { version = "0.3.4", features = ["cors"] }
17-
tracing = "0.1.36"
17+
tracing = "0.1.37"
1818
uuid = { version = "1.1.2", features = ["v4", "fast-rng", "serde"] }
1919

2020
[dev-dependencies]
2121
hyper = "0.14.20"
22-
tokio = { version = "1.21.0", features = ["macros", "rt", "test-util"] }
22+
tokio = { version = "1.21.2", features = ["macros", "rt", "test-util"] }
2323

2424
[workspace]
2525
members = ["server", "synapse"]

server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77

88
[dependencies]
99
hyper = { version = "0.14.20", features = ["server"] }
10-
tokio = { version = "1.21.0", features = ["macros", "rt-multi-thread"] }
11-
tracing-subscriber = "0.3.15"
10+
tokio = { version = "1.21.2", features = ["macros", "rt-multi-thread"] }
11+
tracing-subscriber = "0.3.16"
1212

1313
rendezvous = { path = "../" }

synapse/Cargo.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,21 @@
22
name = "synapse_rendezvous"
33
version = "0.1.0"
44
edition = "2021"
5+
publish = false
56

67
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78
[lib]
89
name = "synapse_rendezvous"
910
crate-type = ["cdylib"]
1011

1112
[dependencies]
12-
anyhow = "1.0.64"
13+
anyhow = "1.0.65"
1314
http-body = "0.4.5"
14-
pyo3 = { version = "0.16.5", features = ["extension-module", "anyhow"] }
15-
pyo3-log = "0.6.0"
16-
pyo3-matrix-synapse-module = { git = "https://github.com/sandhose/pyo3-matrix-synapse-module.git" }
17-
serde = { version = "1.0.144", features = ["derive"] }
15+
pyo3 = { version = "0.17.2", features = ["extension-module", "anyhow"] }
16+
pyo3-log = "0.7.0"
17+
pyo3-matrix-synapse-module = "0.1.0"
18+
serde = { version = "1.0.145", features = ["derive"] }
1819
tower = { version = "0.4.13", features = ["util"] }
19-
tracing = { version = "0.1.36", features = ["log", "log-always"] }
20+
tracing = { version = "0.1.37", features = ["log", "log-always"] }
2021

2122
rendezvous = { path = "../" }

synapse/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "synapse_rendezvous"
7+
version = "0.0.1"
78
requires-python = ">=3.7"
89
classifiers = [
910
"Programming Language :: Rust",

0 commit comments

Comments
 (0)