forked from DGNum/colmena
Start work on 0.3.0
This commit is contained in:
parent
dd66ce30e0
commit
08f9caa24c
3 changed files with 4 additions and 4 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -120,7 +120,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "colmena"
|
name = "colmena"
|
||||||
version = "0.2.0"
|
version = "0.3.0-pre"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi-to-html",
|
"ansi-to-html",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "colmena"
|
name = "colmena"
|
||||||
version = "0.2.0"
|
version = "0.3.0-pre"
|
||||||
authors = ["Zhaofeng Li <hello@zhaofeng.li>"]
|
authors = ["Zhaofeng Li <hello@zhaofeng.li>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ in {
|
||||||
inherit (pkgs) lib stdenv rustPlatform;
|
inherit (pkgs) lib stdenv rustPlatform;
|
||||||
in rustPlatform.buildRustPackage rec {
|
in rustPlatform.buildRustPackage rec {
|
||||||
pname = "colmena";
|
pname = "colmena";
|
||||||
version = "0.2.0";
|
version = "0.3.0-pre";
|
||||||
|
|
||||||
# We guarantee CLI and Nix API stability for the same minor version
|
# We guarantee CLI and Nix API stability for the same minor version
|
||||||
apiVersion = builtins.concatStringsSep "." (lib.take 2 (lib.splitString "." version));
|
apiVersion = builtins.concatStringsSep "." (lib.take 2 (lib.splitString "." version));
|
||||||
|
@ -20,7 +20,7 @@ in rustPlatform.buildRustPackage rec {
|
||||||
src = lib.cleanSource ./.;
|
src = lib.cleanSource ./.;
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-ZNSg3hXWKHNQ9yHJS1qW3tFYwzU4ZDa1N0yvoGLmWns=";
|
cargoSha256 = "sha256-DJ+8XeGyg2EQdnHjmzN37fIuYa7HH+unM27RFHXHaso=";
|
||||||
|
|
||||||
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
||||||
mkdir completions
|
mkdir completions
|
||||||
|
|
Loading…
Reference in a new issue