12 lines
234 B
TOML
12 lines
234 B
TOML
[package]
|
|
name = "insta-image"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
png = ["dep:png"]
|
|
|
|
[dependencies]
|
|
png = { version = "0.18", optional = true }
|
|
insta = { git = "https://github.com/mitsuhiko/insta.git", branch = "master" }
|