32 lines
826 B
TOML
32 lines
826 B
TOML
[package]
|
|
name = "psd"
|
|
version = "0.4.0"
|
|
authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
|
|
description = "A Rust API for parsing and working with PSD files."
|
|
keywords = ["psd", "photoshop", "texture", "png", "image"]
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/chinedufn/psd"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|
|
|
|
[dependencies]
|
|
thiserror = "1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
bincode = "1.3"
|
|
log = "0.4"
|
|
rand = "0.8"
|
|
hcie-protocol = { path = "../hcie-protocol" }
|
|
hcie-blend = { path = "../hcie-blend" }
|
|
hcie-fx = { path = "../hcie-fx" }
|
|
hcie-psd-saver = { path = "../hcie-psd-saver" }
|
|
image = { version = "0.25", default-features = false, features = ["jpeg"] }
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1"
|
|
hcie-protocol = { path = "../hcie-protocol" }
|