forked from nrabulinski/attic
Fix build with nixpkgs 22.11
We temporarily patch sea-orm to build with a lower MSRV.
This commit is contained in:
parent
abd6db3d04
commit
99202303be
2 changed files with 16 additions and 10 deletions
14
Cargo.lock
generated
14
Cargo.lock
generated
|
@ -3008,8 +3008,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sea-orm"
|
name = "sea-orm"
|
||||||
version = "0.10.6"
|
version = "0.10.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://github.com/zhaofengli/sea-orm?branch=attic#bc765b2ceede7fb225a9a7a38109c6e23726d70b"
|
||||||
checksum = "bc2db217f2061ab2bbb1bd22323a533ace0617f97690919f3ed3894e1b3ba170"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-stream",
|
"async-stream",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
@ -3036,8 +3035,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sea-orm-cli"
|
name = "sea-orm-cli"
|
||||||
version = "0.10.6"
|
version = "0.10.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://github.com/zhaofengli/sea-orm?branch=attic#bc765b2ceede7fb225a9a7a38109c6e23726d70b"
|
||||||
checksum = "ebcce92f0f804acd10b4378a3c8b0e5fb28f3a9ae9337006bd651baa3a95632c"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"clap 3.2.23",
|
"clap 3.2.23",
|
||||||
|
@ -3052,8 +3050,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sea-orm-macros"
|
name = "sea-orm-macros"
|
||||||
version = "0.10.6"
|
version = "0.10.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://github.com/zhaofengli/sea-orm?branch=attic#bc765b2ceede7fb225a9a7a38109c6e23726d70b"
|
||||||
checksum = "38066057ef1fa17ddc6ce1458cf269862b8f1df919497d110ea127b549a90fbd"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bae",
|
"bae",
|
||||||
"heck 0.3.3",
|
"heck 0.3.3",
|
||||||
|
@ -3064,9 +3061,8 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sea-orm-migration"
|
name = "sea-orm-migration"
|
||||||
version = "0.10.6"
|
version = "0.10.5"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://github.com/zhaofengli/sea-orm?branch=attic#bc765b2ceede7fb225a9a7a38109c6e23726d70b"
|
||||||
checksum = "ada716f9825e4190a0a8ebaecbf7171ce0ed6f218ea2e70086bdc72ccfc1d03c"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"clap 3.2.23",
|
"clap 3.2.23",
|
||||||
|
|
|
@ -71,6 +71,11 @@ features = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
|
# Temporary workaround for nixpkgs 22.11 w/ Rust 1.64.0.
|
||||||
|
# TODO: Remove once 23.05 becomes stable
|
||||||
|
git = "https://github.com/zhaofengli/sea-orm"
|
||||||
|
branch = "attic"
|
||||||
|
|
||||||
version = "0.10.6"
|
version = "0.10.6"
|
||||||
features = [
|
features = [
|
||||||
"runtime-tokio-rustls",
|
"runtime-tokio-rustls",
|
||||||
|
@ -81,7 +86,12 @@ features = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependencies.sea-orm-migration]
|
[dependencies.sea-orm-migration]
|
||||||
version = "0.10.6"
|
# Temporary workaround for nixpkgs 22.11 w/ Rust 1.64.0.
|
||||||
|
# TODO: Remove once 23.05 becomes stable
|
||||||
|
git = "https://github.com/zhaofengli/sea-orm"
|
||||||
|
branch = "attic"
|
||||||
|
|
||||||
|
version = "0.10.5"
|
||||||
|
|
||||||
[dependencies.tokio]
|
[dependencies.tokio]
|
||||||
version = "1.23.0"
|
version = "1.23.0"
|
||||||
|
|
Loading…
Reference in a new issue