Merge branch 'release/1.0.2'
This commit is contained in:
commit
b39c539f9e
4 changed files with 503 additions and 549 deletions
1041
Cargo.lock
generated
1041
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "polygon-art"
|
||||
version = "1.0.1"
|
||||
version = "1.0.2"
|
||||
authors = ["Ingolf Wagner <contact@ingolf-wagner.de>"]
|
||||
edition = "2018"
|
||||
|
||||
|
@ -14,7 +14,7 @@ keywords = ["image", "drawing", "art", "geo"]
|
|||
categories = ["graphics","multimedia::images", "rendering","visualization"]
|
||||
license = "GPL-3.0"
|
||||
maintenance = { status = "actively-developed" }
|
||||
exclude = [ "shell.nix", "default.nix" ]
|
||||
exclude = [ "shell.nix", "default.nix", "flake.nix" ]
|
||||
|
||||
[dependencies]
|
||||
cairo-rs = { version = "0.9", features = [ "png", "svg" ] }
|
||||
|
|
|
@ -67,6 +67,8 @@ nix build
|
|||
|
||||
``` shell
|
||||
cargo update # to update Cargo.lock
|
||||
# or
|
||||
cargo update --offline # to update Cargo.lock
|
||||
```
|
||||
and
|
||||
|
||||
|
|
|
@ -13,9 +13,10 @@
|
|||
rustPlatform.buildRustPackage {
|
||||
|
||||
pname = "polygon-art";
|
||||
version = "1.0.1";
|
||||
version = "1.0.2";
|
||||
src = ./.;
|
||||
cargoSha256 = "0sgk4hw77cxqbqzd258fz67r7fpjblkm7cqh14n5f1c43y8vgxa0";
|
||||
#cargoHash = lib.fakeHash;
|
||||
cargoHash = "sha256-MCFezfCu/PktFdB+XUnagtz9g65C90F4qa3y4Ser/nQ=";
|
||||
verifyCargoDeps = true;
|
||||
|
||||
# Needed so bindgen can find libclang.so
|
||||
|
|
Loading…
Reference in a new issue