-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
28 lines (24 loc) · 933 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
description = "rust port of identicon generator for polkadot from polkadot.js"
license = "Apache-2.0"
name = "plot_icon"
version = "0.3.0"
authors = ["Alexander Slesarev <[email protected]>", "Vera Abramova <[email protected]>"]
edition = "2021"
repository = "https://github.com/paritytech/polkadot-identicon-rust"
homepage = "https://github.com/paritytech/polkadot-identicon-rust"
keywords = ["identicon", "icon", "parity", "polkadot", "substrate"]
[dependencies]
blake2-rfc = "0.2.18"
hex = {version = "0.4.3", optional = true}
image = {version = "0.24.0", default-features = false, features = ["ico"], optional = true}
palette = {version = "0.6.0", default-features = false, features = ["std"]}
png = {version = "0.17.3", optional = true}
svg = {version = "0.13.0", optional = true}
[features]
default = ["pix", "vec"]
pix = ["image", "png"]
vec = ["hex", "svg"]
[lib]
name = "plot_icon"
crate-type = ["lib"]