Skip to content

Commit

Permalink
Use mainline cuid instead of our fork (#3189)
Browse files Browse the repository at this point in the history
  • Loading branch information
Julius de Bruijn committed Sep 14, 2022
1 parent 80833cf commit 2404d47
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 28 deletions.
29 changes: 5 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion libs/datamodel/connectors/dml/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ datamodel = { path = "../../core" }
schema-ast = { path = "../../schema-ast" }

uuid = { version = "1", features = ["serde", "v4"], optional = true }
cuid = { git = "https://github.com/prisma/cuid-rust", optional = true }
cuid = { version = "1.2", optional = true }
chrono = { version = "0.4.6", features = ["serde"] }
serde = { version = "1.0.90", features = ["derive"] }
serde_json = { version = "1.0", features = ["float_roundtrip"] }
Expand Down
2 changes: 1 addition & 1 deletion query-engine/connectors/mongodb-query-connector/Cargo.toml
Expand Up @@ -51,7 +51,7 @@ features = ["derive"]
version = "1.0"

[dependencies.cuid]
git = "https://github.com/prisma/cuid-rust"
version = "1.2"

[dependencies.user-facing-errors]
features = ["sql"]
Expand Down
2 changes: 1 addition & 1 deletion query-engine/connectors/sql-query-connector/Cargo.toml
Expand Up @@ -64,7 +64,7 @@ features = ["derive"]
version = "1.0"

[dependencies.cuid]
git = "https://github.com/prisma/cuid-rust"
version = "1.2"

[dependencies.user-facing-errors]
features = ["sql"]
Expand Down
2 changes: 1 addition & 1 deletion query-engine/core/Cargo.toml
Expand Up @@ -42,7 +42,7 @@ tracing-opentelemetry = "0.17.4"
url = "2"
user-facing-errors = { path = "../../libs/user-facing-errors" }
uuid = "1"
cuid = { git = "https://github.com/prisma/cuid-rust" }
cuid = "1.2"
pin-utils = "0.1"
lazy_static = "1.4"
schema = { path = "../schema" }
Expand Down

0 comments on commit 2404d47

Please sign in to comment.