Bump package versions

This commit is contained in:
Jordan Doyle 2020-04-12 16:07:10 +01:00 committed by jordan@doyle.la
parent ff3d193734
commit 53d97709fa
No known key found for this signature in database
GPG Key ID: 1EA6BAE6F66DC49A
3 changed files with 628 additions and 409 deletions

1022
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -11,11 +11,11 @@ edition = "2018"
owning_ref = "0.4"
linked-hash-map = "0.5"
rocket = { version = "0.4.4", default-features = false }
askama = "0.8"
lazy_static = "1.2"
rand = { version = "0.6", features = ["nightly"] }
askama = "0.9"
lazy_static = "1.4"
rand = { version = "0.7", features = ["nightly"] }
gpw = "0.1"
syntect = "3.0"
syntect = "4.1"
serde_derive = "1.0"
[profile.release]

View File

@ -2,8 +2,8 @@ with import <nixpkgs> {};
let src = fetchFromGitHub {
owner = "mozilla";
repo = "nixpkgs-mozilla";
# commited 12/2/2019
rev = "37f7f33ae3ddd70506cd179d9718621b5686c48d";
# commited 19/2/2020
rev = "e912ed483e980dfb4666ae0ed17845c4220e5e7c";
sha256 = "0cmvc9fnr38j3n0m4yf0k6s2x589w1rdby1qry1vh435v79gp95j";
};
in
@ -14,6 +14,9 @@ stdenv.mkDerivation {
buildInputs = [
latest.rustChannels.nightly.cargo
latest.rustChannels.nightly.rust
stdenv.cc.libc
] ++
pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.apple_sdk.frameworks.Security;
LIBCLANG_PATH="${llvmPackages.libclang}/lib";
}