numf/Cargo.toml

23 lines
580 B
TOML
Raw Permalink Normal View History

2024-05-10 13:57:36 +02:00
[package]
2024-05-10 15:55:24 +02:00
name = "numf"
2024-05-12 21:21:34 +02:00
version = "0.2.0"
2024-05-10 13:57:36 +02:00
edition = "2021"
2024-05-12 18:54:31 +02:00
publish = true
2024-05-10 13:57:36 +02:00
authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT"
2024-05-10 15:55:24 +02:00
description = "Convert numbes between formats"
2024-05-10 13:57:36 +02:00
readme = "README.md"
2024-05-10 15:55:24 +02:00
homepage = "https://git.cscherr.de/PlexSheep/numf"
repository = "https://git.cscherr.de/PlexSheep/numf"
2024-05-12 18:49:11 +02:00
keywords = ["cli", "formatting"]
categories = ["command-line-utilities", "encoding"]
2024-05-10 13:57:36 +02:00
[dependencies]
2024-05-10 15:55:24 +02:00
anyhow = "1.0.83"
clap = { version = "4.5.4", features = ["derive"] }
clap-num = "1.1.1"
fast32 = "1.0.2"
libpt = { version = "0.5.0", features = ["bintols"]}
2024-05-10 13:57:36 +02:00