From 8d618f8097326871355186c7f6191a2273bcd2e8 Mon Sep 17 00:00:00 2001 From: ZeWaka Date: Sat, 24 Apr 2021 19:06:00 -0700 Subject: [PATCH] Version bump and dmi dependency change (#7) --- Cargo.lock | 21 ++++++++++++++++----- Cargo.toml | 8 +++++--- 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7016849..b739617 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "adler" version = "0.2.3" @@ -218,12 +220,21 @@ dependencies = [ "byteorder", ] +[[package]] +name = "deflate" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f95bf05dffba6e6cce8dfbb30def788154949ccd9aed761b472119c21e01c70" +dependencies = [ + "adler32", +] + [[package]] name = "dmi" -version = "0.1.0" -source = "git+https://github.com/Rohesie/dmi#6d66475306a9677b8b971d5937a898bd5e605793" +version = "0.1.1" +source = "git+https://github.com/spacestation13/dmi#f301d39b475cb2915e21dfa06b66409cd101a70a" dependencies = [ - "deflate", + "deflate 0.9.1", "image", "inflate", "thiserror", @@ -265,7 +276,7 @@ dependencies = [ [[package]] name = "icon-cutter" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "dmi", @@ -416,7 +427,7 @@ checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6" dependencies = [ "bitflags", "crc32fast", - "deflate", + "deflate 0.8.6", "miniz_oxide 0.3.7", ] diff --git a/Cargo.toml b/Cargo.toml index 47373ff..54d939f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,15 @@ [package] name = "icon-cutter" -version = "0.1.0" +version = "0.1.1" authors = ["L "] edition = "2018" - +license = "AGPL" +description = "icon-cutter is a library which creates .dmi files tailored to use with an 8-bit bitmasking system for smooth icons in in the DM game programming language." +homepage = "https://github.com/tgstation/icon-cutter" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -dmi = { git = "https://github.com/Rohesie/dmi" } +dmi = { git = "https://github.com/spacestation13/dmi", version = "0.1" } anyhow = "1.0" image = "0.23" yaml-rust = "0.4"