Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ private = { ignore = true }

[bans]
multiple-versions = "warn"
wildcards = "warn"
wildcards = "deny"

[[bans.features]]
name = "serde_json"
Expand All @@ -38,6 +38,3 @@ deny = [
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-git = [
"https://github.com/ruma/ruma",
]
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Breaking changes:

- Upgrade ruma to 0.14.0.
- Upgrade ruma to 0.14.1.
- The `send_request`, `send_request_as` and `send_customized_request` of
`Client` now have stricter bounds for the request. These bounds are
compatible with all requests from ruma-client-api and ruma-appservice-api.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ hyper-rustls = { version = "0.27.1", optional = true, default-features = false }
hyper-tls = { version = "0.6.0", optional = true }
hyper-util = { version = "0.1.3", optional = true, features = ["client-legacy", "http1", "http2", "tokio"] }
reqwest = { version = "0.12.4", optional = true, default-features = false }
ruma = { git = "https://github.com/ruma/ruma", rev = "a67081e", features = ["api"] }
ruma = { version = "0.14.1", features = ["api"] }
serde_html_form = "0.2.0"
tracing = { version = "0.1.30", default-features = false, features = ["std"] }

[dev-dependencies]
ruma = { git = "https://github.com/ruma/ruma", rev = "a67081e", features = ["client-api-c"] }
ruma = { version = "0.14.1", features = ["client-api-c"] }
tokio-stream = "0.1.8"

[lints.rust]
Expand Down