collab: Pin sea-orm-macro crate version together with sea-orm (#40846)

Currently running `cargo update` on Zed will break the collab crate
because the versions of sea-orm and sea-orm-macros will not match. This
results in a bunch of noisy warnings from rust-analyzer.

Release Notes:

- N/A
This commit is contained in:
Be
2025-10-22 07:37:20 +00:00
committed by GitHub
parent fd9c2e32f3
commit 3d3e9130a8
3 changed files with 4 additions and 0 deletions
Generated
+1
View File
@@ -3379,6 +3379,7 @@ dependencies = [
"rpc",
"scrypt",
"sea-orm",
"sea-orm-macros",
"semantic_version",
"semver",
"serde",
+1
View File
@@ -901,4 +901,5 @@ ignored = [
"serde",
"component",
"documented",
"sea-orm-macros",
]
+2
View File
@@ -47,7 +47,9 @@ reqwest = { version = "0.11", features = ["json"] }
reqwest_client.workspace = true
rpc.workspace = true
scrypt = "0.11"
# sea-orm and sea-orm-macros versions must match exactly.
sea-orm = { version = "=1.1.10", features = ["sqlx-postgres", "postgres-array", "runtime-tokio-rustls", "with-uuid"] }
sea-orm-macros = "=1.1.10"
semantic_version.workspace = true
semver.workspace = true
serde.workspace = true