dependabot[bot] 5e24aeb8b3 Update imageproc requirement from 0.23.0 to 0.25.0 in /robohash
---
updated-dependencies:
- dependency-name: imageproc
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-31 22:01:49 +00:00

44 lines
997 B
TOML

[package]
name = "robohash"
authors = ["reckless_satoshi","kyco"]
version = "0.3.0"
edition = "2021"
description = "RoboHash implementation w/ robosats customizations"
homepage = "https://github.com/robosats/robo-identities"
repository = "https://github.com/robosats/robo-identities"
readme = "README.md"
license-file = "LICENSE"
keywords = ["robo", "robohash", "robot", "avatar"]
include = ["**/*.rs", "Cargo.toml"]
[[bin]]
name = "robohash-cli"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
jni = "0.21.1"
ring = "0.16.20"
anyhow = "1.0.66"
data-encoding = "2.3.2"
byteorder = "1.4.3"
walkdir = "2.3.2"
image = "0.24.5"
base64 = "0.21.2"
strum = "0.25"
strum_macros = "0.25"
thiserror = "1.0.37"
imageproc = "0.25.0"
prefer-dynamic = "0"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "benchmark"
harness = false
[lib]
crate-type = ["rlib", "dylib"]