A fork of attic a self-hostable Nix Binary Cache server
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix build with nixpkgs 22.11

We temporarily patch sea-orm to build with a lower MSRV.

+16 -10
+5 -9
Cargo.lock
··· 3008 3008 [[package]] 3009 3009 name = "sea-orm" 3010 3010 version = "0.10.6" 3011 - source = "registry+https://github.com/rust-lang/crates.io-index" 3012 - checksum = "bc2db217f2061ab2bbb1bd22323a533ace0617f97690919f3ed3894e1b3ba170" 3011 + source = "git+https://github.com/zhaofengli/sea-orm?branch=attic#bc765b2ceede7fb225a9a7a38109c6e23726d70b" 3013 3012 dependencies = [ 3014 3013 "async-stream", 3015 3014 "async-trait", ··· 3036 3035 [[package]] 3037 3036 name = "sea-orm-cli" 3038 3037 version = "0.10.6" 3039 - source = "registry+https://github.com/rust-lang/crates.io-index" 3040 - checksum = "ebcce92f0f804acd10b4378a3c8b0e5fb28f3a9ae9337006bd651baa3a95632c" 3038 + source = "git+https://github.com/zhaofengli/sea-orm?branch=attic#bc765b2ceede7fb225a9a7a38109c6e23726d70b" 3041 3039 dependencies = [ 3042 3040 "chrono", 3043 3041 "clap 3.2.23", ··· 3052 3050 [[package]] 3053 3051 name = "sea-orm-macros" 3054 3052 version = "0.10.6" 3055 - source = "registry+https://github.com/rust-lang/crates.io-index" 3056 - checksum = "38066057ef1fa17ddc6ce1458cf269862b8f1df919497d110ea127b549a90fbd" 3053 + source = "git+https://github.com/zhaofengli/sea-orm?branch=attic#bc765b2ceede7fb225a9a7a38109c6e23726d70b" 3057 3054 dependencies = [ 3058 3055 "bae", 3059 3056 "heck 0.3.3", ··· 3064 3061 3065 3062 [[package]] 3066 3063 name = "sea-orm-migration" 3067 - version = "0.10.6" 3068 - source = "registry+https://github.com/rust-lang/crates.io-index" 3069 - checksum = "ada716f9825e4190a0a8ebaecbf7171ce0ed6f218ea2e70086bdc72ccfc1d03c" 3064 + version = "0.10.5" 3065 + source = "git+https://github.com/zhaofengli/sea-orm?branch=attic#bc765b2ceede7fb225a9a7a38109c6e23726d70b" 3070 3066 dependencies = [ 3071 3067 "async-trait", 3072 3068 "clap 3.2.23",
+11 -1
server/Cargo.toml
··· 71 71 ] 72 72 73 73 [dependencies.sea-orm] 74 + # Temporary workaround for nixpkgs 22.11 w/ Rust 1.64.0. 75 + # TODO: Remove once 23.05 becomes stable 76 + git = "https://github.com/zhaofengli/sea-orm" 77 + branch = "attic" 78 + 74 79 version = "0.10.6" 75 80 features = [ 76 81 "runtime-tokio-rustls", ··· 81 86 ] 82 87 83 88 [dependencies.sea-orm-migration] 84 - version = "0.10.6" 89 + # Temporary workaround for nixpkgs 22.11 w/ Rust 1.64.0. 90 + # TODO: Remove once 23.05 becomes stable 91 + git = "https://github.com/zhaofengli/sea-orm" 92 + branch = "attic" 93 + 94 + version = "0.10.5" 85 95 86 96 [dependencies.tokio] 87 97 version = "1.23.0"