fix: enable uuid v7 feature for new_uuid() -> Uuid::now_v7()
The new_uuid() change to Uuid::now_v7() (in v0.3.8) needs the uuid crate's v7 feature; it only resolved locally via feature unification. Enable it explicitly so sqlx-record compiles standalone / as a git dependency. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
b9de877ba1
commit
de2a94cb1e
|
|
@ -12,7 +12,7 @@ edition = "2021"
|
||||||
sqlx-record-derive = { path = "sqlx-record-derive", optional = true }
|
sqlx-record-derive = { path = "sqlx-record-derive", optional = true }
|
||||||
sqlx = { version = "0.8", features = ["runtime-tokio", "uuid", "chrono", "json"] }
|
sqlx = { version = "0.8", features = ["runtime-tokio", "uuid", "chrono", "json"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
uuid = { version = "1", features = ["v4"] }
|
uuid = { version = "1", features = ["v4", "v7"] }
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
paste = "1.0"
|
paste = "1.0"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue