dependabot[bot] dcfdaef46c Update ring requirement from 0.16.20 to 0.17.6 in /robohash
Updates the requirements on [ring](https://github.com/briansmith/ring) to permit the latest version.
- [Commits](https://github.com/briansmith/ring/commits)

---
updated-dependencies:
- dependency-name: ring
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-11-29 08:09:36 +00:00

38 lines
921 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]
ring = "0.17.6"
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.23.0"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "benchmark"
harness = false