about summary refs log tree commit diff
path: root/Cargo.toml
blob: e416b180d5b4d3643204fa3524f003cab83f6d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "gifed"
version = "0.1.0"
authors = ["Brad Alfirevic <brad@genbyte.dev>"]
edition = "2018"
license = "CC0-1.0"
description = "Gif encoding and decoding with fine control"
repository = "https://github.com/genuinebyte/gifed"

[dev-dependencies]
criterion = "0.3"
rand = "0.7.3"

[dependencies]
png = "0.17.1"
weezl = "0.1.5"
owo-colors = "2.0.0"

[[bench]]
name = "lzw_encode"
harness = false