stop building ruma-state-res as it now lives inside conduwuit

Signed-off-by: June Clementine Strawberry <june@3.dog>
This commit is contained in:
June Clementine Strawberry 2025-03-05 22:54:00 -05:00
parent 406bb2845b
commit 8347cc08ef
No known key found for this signature in database
16 changed files with 5 additions and 5 deletions

View file

@ -31,7 +31,7 @@ ruma-macros = { version = "=0.13.0", path = "crates/ruma-macros" }
ruma-push-gateway-api = { version = "0.9.0", path = "crates/ruma-push-gateway-api" } ruma-push-gateway-api = { version = "0.9.0", path = "crates/ruma-push-gateway-api" }
ruma-signatures = { version = "0.15.0", path = "crates/ruma-signatures" } ruma-signatures = { version = "0.15.0", path = "crates/ruma-signatures" }
ruma-server-util = { version = "0.3.0", path = "crates/ruma-server-util" } ruma-server-util = { version = "0.3.0", path = "crates/ruma-server-util" }
ruma-state-res = { version = "0.11.0", path = "crates/ruma-state-res" } #ruma-state-res = { version = "0.11.0", path = "crates/ruma-state-res" }
serde = { version = "1.0.164", features = ["derive"] } serde = { version = "1.0.164", features = ["derive"] }
serde_html_form = "0.2.0" serde_html_form = "0.2.0"
serde_json = "1.0.87" serde_json = "1.0.87"

View file

@ -21,7 +21,7 @@ client = ["dep:ruma-client"]
events = ["dep:ruma-events"] events = ["dep:ruma-events"]
server-util = ["dep:ruma-server-util"] server-util = ["dep:ruma-server-util"]
signatures = ["dep:ruma-signatures", "canonical-json"] signatures = ["dep:ruma-signatures", "canonical-json"]
state-res = ["dep:ruma-state-res"] #state-res = ["dep:ruma-state-res"]
# ruma-client feature flags # ruma-client feature flags
client-ext-client-api = ["client", "ruma-client?/client-api"] client-ext-client-api = ["client", "ruma-client?/client-api"]
@ -119,7 +119,7 @@ full = [
"client-ext-client-api", "client-ext-client-api",
"events", "events",
"signatures", "signatures",
"state-res", #"state-res",
"appservice-api", "appservice-api",
"client-api", "client-api",
"federation-api", "federation-api",
@ -201,7 +201,7 @@ unstable-exhaustive-types = [
"ruma-identity-service-api?/unstable-exhaustive-types", "ruma-identity-service-api?/unstable-exhaustive-types",
"ruma-push-gateway-api?/unstable-exhaustive-types", "ruma-push-gateway-api?/unstable-exhaustive-types",
"ruma-signatures?/unstable-exhaustive-types", "ruma-signatures?/unstable-exhaustive-types",
"ruma-state-res?/unstable-exhaustive-types", #"ruma-state-res?/unstable-exhaustive-types",
"ruma-events?/unstable-exhaustive-types", "ruma-events?/unstable-exhaustive-types",
] ]
unstable-extensible-events = [ unstable-extensible-events = [
@ -344,7 +344,7 @@ ruma-events = { workspace = true, optional = true }
ruma-html = { workspace = true, optional = true } ruma-html = { workspace = true, optional = true }
ruma-server-util = { workspace = true, optional = true } ruma-server-util = { workspace = true, optional = true }
ruma-signatures = { workspace = true, optional = true } ruma-signatures = { workspace = true, optional = true }
ruma-state-res = { workspace = true, optional = true } #ruma-state-res = { workspace = true, optional = true }
ruma-appservice-api = { workspace = true, optional = true } ruma-appservice-api = { workspace = true, optional = true }
ruma-client-api = { workspace = true, optional = true } ruma-client-api = { workspace = true, optional = true }