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]]
|
||||
name = "colmena"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0-pre"
|
||||
dependencies = [
|
||||
"ansi-to-html",
|
||||
"async-trait",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "colmena"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0-pre"
|
||||
authors = ["Zhaofeng Li <hello@zhaofeng.li>"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ in {
|
|||
inherit (pkgs) lib stdenv rustPlatform;
|
||||
in rustPlatform.buildRustPackage rec {
|
||||
pname = "colmena";
|
||||
version = "0.2.0";
|
||||
version = "0.3.0-pre";
|
||||
|
||||
# We guarantee CLI and Nix API stability for the same minor version
|
||||
apiVersion = builtins.concatStringsSep "." (lib.take 2 (lib.splitString "." version));
|
||||
|
@ -20,7 +20,7 @@ in rustPlatform.buildRustPackage rec {
|
|||
src = lib.cleanSource ./.;
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-ZNSg3hXWKHNQ9yHJS1qW3tFYwzU4ZDa1N0yvoGLmWns=";
|
||||
cargoSha256 = "sha256-DJ+8XeGyg2EQdnHjmzN37fIuYa7HH+unM27RFHXHaso=";
|
||||
|
||||
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
||||
mkdir completions
|
||||
|
|
Loading…
Reference in a new issue