This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
2024-02-01 22:02:03 +01:00
|
|
|
[package]
|
2024-02-01 22:22:16 +01:00
|
|
|
name = "hedu"
|
2024-02-01 22:38:26 +01:00
|
|
|
version = "0.1.1"
|
2024-02-01 22:02:03 +01:00
|
|
|
edition = "2021"
|
2024-02-01 22:23:14 +01:00
|
|
|
publish = true
|
2024-02-01 22:02:03 +01:00
|
|
|
authors = ["Christoph J. Scherr <software@cscherr.de>"]
|
2024-02-01 22:22:16 +01:00
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
description = "Hex dumping tool written in Rust"
|
2024-02-01 22:02:03 +01:00
|
|
|
readme = "README.md"
|
2024-02-01 22:22:16 +01:00
|
|
|
homepage = "https://git.cscherr.de/PlexSheep/hedu"
|
|
|
|
repository = "https://git.cscherr.de/PlexSheep/hedu"
|
|
|
|
keywords = ["hexdumper"]
|
2024-02-01 22:02:03 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-01 22:22:16 +01:00
|
|
|
libpt = { version = "0.3.11", features = ["log", "bintols"] }
|
|
|
|
clap = { version = "4.4.4", features = ["derive", "help"] }
|
|
|
|
clap-num = { version = "1.0.2" }
|
|
|
|
clap-verbosity-flag = { version = "2.0.1" }
|
2024-02-01 22:54:07 +01:00
|
|
|
anyhow = "1.0.79"
|