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