From 8347cc08ef42971a643e5603927e389cd04c3d88 Mon Sep 17 00:00:00 2001 From: June Clementine Strawberry Date: Wed, 5 Mar 2025 22:54:00 -0500 Subject: [PATCH] stop building ruma-state-res as it now lives inside conduwuit Signed-off-by: June Clementine Strawberry --- Cargo.toml | 2 +- crates/ruma/Cargo.toml | 8 ++++---- {crates => old}/ruma-state-res/.clippy.toml | 0 {crates => old}/ruma-state-res/CHANGELOG.md | 0 {crates => old}/ruma-state-res/Cargo.toml | 0 {crates => old}/ruma-state-res/README.md | 0 {crates => old}/ruma-state-res/architecture.md | 0 {crates => old}/ruma-state-res/benches/outcomes.txt | 0 {crates => old}/ruma-state-res/benches/state_res_bench.rs | 0 {crates => old}/ruma-state-res/src/error.rs | 0 {crates => old}/ruma-state-res/src/event_auth.rs | 0 {crates => old}/ruma-state-res/src/lib.rs | 0 {crates => old}/ruma-state-res/src/power_levels.rs | 0 {crates => old}/ruma-state-res/src/room_version.rs | 0 {crates => old}/ruma-state-res/src/state_event.rs | 0 {crates => old}/ruma-state-res/src/test_utils.rs | 0 16 files changed, 5 insertions(+), 5 deletions(-) rename {crates => old}/ruma-state-res/.clippy.toml (100%) rename {crates => old}/ruma-state-res/CHANGELOG.md (100%) rename {crates => old}/ruma-state-res/Cargo.toml (100%) rename {crates => old}/ruma-state-res/README.md (100%) rename {crates => old}/ruma-state-res/architecture.md (100%) rename {crates => old}/ruma-state-res/benches/outcomes.txt (100%) rename {crates => old}/ruma-state-res/benches/state_res_bench.rs (100%) rename {crates => old}/ruma-state-res/src/error.rs (100%) rename {crates => old}/ruma-state-res/src/event_auth.rs (100%) rename {crates => old}/ruma-state-res/src/lib.rs (100%) rename {crates => old}/ruma-state-res/src/power_levels.rs (100%) rename {crates => old}/ruma-state-res/src/room_version.rs (100%) rename {crates => old}/ruma-state-res/src/state_event.rs (100%) rename {crates => old}/ruma-state-res/src/test_utils.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index b50cf5e4..685bb813 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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-signatures = { version = "0.15.0", path = "crates/ruma-signatures" } 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_html_form = "0.2.0" serde_json = "1.0.87" diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index 3114ea93..7848369e 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -21,7 +21,7 @@ client = ["dep:ruma-client"] events = ["dep:ruma-events"] server-util = ["dep:ruma-server-util"] signatures = ["dep:ruma-signatures", "canonical-json"] -state-res = ["dep:ruma-state-res"] +#state-res = ["dep:ruma-state-res"] # ruma-client feature flags client-ext-client-api = ["client", "ruma-client?/client-api"] @@ -119,7 +119,7 @@ full = [ "client-ext-client-api", "events", "signatures", - "state-res", + #"state-res", "appservice-api", "client-api", "federation-api", @@ -201,7 +201,7 @@ unstable-exhaustive-types = [ "ruma-identity-service-api?/unstable-exhaustive-types", "ruma-push-gateway-api?/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", ] unstable-extensible-events = [ @@ -344,7 +344,7 @@ ruma-events = { workspace = true, optional = true } ruma-html = { workspace = true, optional = true } ruma-server-util = { 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-client-api = { workspace = true, optional = true } diff --git a/crates/ruma-state-res/.clippy.toml b/old/ruma-state-res/.clippy.toml similarity index 100% rename from crates/ruma-state-res/.clippy.toml rename to old/ruma-state-res/.clippy.toml diff --git a/crates/ruma-state-res/CHANGELOG.md b/old/ruma-state-res/CHANGELOG.md similarity index 100% rename from crates/ruma-state-res/CHANGELOG.md rename to old/ruma-state-res/CHANGELOG.md diff --git a/crates/ruma-state-res/Cargo.toml b/old/ruma-state-res/Cargo.toml similarity index 100% rename from crates/ruma-state-res/Cargo.toml rename to old/ruma-state-res/Cargo.toml diff --git a/crates/ruma-state-res/README.md b/old/ruma-state-res/README.md similarity index 100% rename from crates/ruma-state-res/README.md rename to old/ruma-state-res/README.md diff --git a/crates/ruma-state-res/architecture.md b/old/ruma-state-res/architecture.md similarity index 100% rename from crates/ruma-state-res/architecture.md rename to old/ruma-state-res/architecture.md diff --git a/crates/ruma-state-res/benches/outcomes.txt b/old/ruma-state-res/benches/outcomes.txt similarity index 100% rename from crates/ruma-state-res/benches/outcomes.txt rename to old/ruma-state-res/benches/outcomes.txt diff --git a/crates/ruma-state-res/benches/state_res_bench.rs b/old/ruma-state-res/benches/state_res_bench.rs similarity index 100% rename from crates/ruma-state-res/benches/state_res_bench.rs rename to old/ruma-state-res/benches/state_res_bench.rs diff --git a/crates/ruma-state-res/src/error.rs b/old/ruma-state-res/src/error.rs similarity index 100% rename from crates/ruma-state-res/src/error.rs rename to old/ruma-state-res/src/error.rs diff --git a/crates/ruma-state-res/src/event_auth.rs b/old/ruma-state-res/src/event_auth.rs similarity index 100% rename from crates/ruma-state-res/src/event_auth.rs rename to old/ruma-state-res/src/event_auth.rs diff --git a/crates/ruma-state-res/src/lib.rs b/old/ruma-state-res/src/lib.rs similarity index 100% rename from crates/ruma-state-res/src/lib.rs rename to old/ruma-state-res/src/lib.rs diff --git a/crates/ruma-state-res/src/power_levels.rs b/old/ruma-state-res/src/power_levels.rs similarity index 100% rename from crates/ruma-state-res/src/power_levels.rs rename to old/ruma-state-res/src/power_levels.rs diff --git a/crates/ruma-state-res/src/room_version.rs b/old/ruma-state-res/src/room_version.rs similarity index 100% rename from crates/ruma-state-res/src/room_version.rs rename to old/ruma-state-res/src/room_version.rs diff --git a/crates/ruma-state-res/src/state_event.rs b/old/ruma-state-res/src/state_event.rs similarity index 100% rename from crates/ruma-state-res/src/state_event.rs rename to old/ruma-state-res/src/state_event.rs diff --git a/crates/ruma-state-res/src/test_utils.rs b/old/ruma-state-res/src/test_utils.rs similarity index 100% rename from crates/ruma-state-res/src/test_utils.rs rename to old/ruma-state-res/src/test_utils.rs