We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b85e56 commit d2cdd4bCopy full SHA for d2cdd4b
Cargo.toml
@@ -15,14 +15,17 @@ server = []
15
16
shared-secret-registration-mac = ["dep:hex", "dep:hmac", "dep:sha1"]
17
18
-unstable-exhaustive-types = []
19
-
20
[dependencies]
21
hex = { version = "0.4.3", optional = true }
22
hmac = { version = "0.12.1", optional = true }
23
-ruma = { version = "0.9.4", features = ["api", "events"] }
+ruma = { version = "0.12.0", features = ["api", "events"] }
24
serde = { version = "1.0.118", features = ["derive"] }
25
sha1 = { version = "0.10.1", optional = true }
26
27
[dev-dependencies]
28
serde_json = "1.0.61"
+
+[lints.rust]
29
+unexpected_cfgs = { level = "warn", check-cfg = [
30
+ 'cfg(ruma_unstable_exhaustive_types)', # set all types as exhaustive
31
+] }
0 commit comments