Cargo.lock 🔗
@@ -3379,6 +3379,7 @@ dependencies = [
"rpc",
"scrypt",
"sea-orm",
+ "sea-orm-macros",
"semantic_version",
"semver",
"serde",
Be created
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
Cargo.lock | 1 +
Cargo.toml | 1 +
crates/collab/Cargo.toml | 2 ++
3 files changed, 4 insertions(+)
@@ -3379,6 +3379,7 @@ dependencies = [
"rpc",
"scrypt",
"sea-orm",
+ "sea-orm-macros",
"semantic_version",
"semver",
"serde",
@@ -901,4 +901,5 @@ ignored = [
"serde",
"component",
"documented",
+ "sea-orm-macros",
]
@@ -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