update cargo.nix
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Cadey Ratio 2020-07-26 14:05:08 -04:00
parent 2d1d7b86be
commit 446cef752b
1 changed files with 23 additions and 2 deletions

View File

@ -180,6 +180,19 @@ rec {
];
};
"anyhow" = rec {
crateName = "anyhow";
version = "1.0.32";
edition = "2018";
sha256 = "16snp36f7d4widi9vs7b1lkn32hy49jwsnl9ycqc288djkz2nq3b";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"arc-swap" = rec {
crateName = "arc-swap";
version = "0.4.7";
@ -1191,7 +1204,7 @@ rec {
};
"maj" = rec {
crateName = "maj";
version = "0.1.0";
version = "0.2.0";
edition = "2018";
src = (builtins.filterSource sourceFilter ./.);
authors = [
@ -1306,7 +1319,7 @@ rec {
};
"majsite" = rec {
crateName = "majsite";
version = "0.1.0";
version = "0.2.0";
edition = "2018";
crateBin = [
{ name = "majsite"; path = "src/main.rs"; }
@ -1316,10 +1329,18 @@ rec {
"Christine Dodrill <me@christine.website>"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "async-trait";
packageId = "async-trait";
}
{
name = "log";
packageId = "log";
}
{
name = "maj";
packageId = "maj";