numf/Cargo.toml

24 lines
617 B
TOML
Raw Normal View History

2024-05-10 13:57:36 +02:00
[package]
2024-05-10 15:55:24 +02:00
name = "numf"
2024-05-23 13:29:26 +02:00
version = "0.4.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"] }
fast32 = "1.0.2"
libpt = { version = "0.5.1", features = ["bintols"], default-features = false }
num = "0.4.3"
rand = "0.8.5"
2024-05-10 13:57:36 +02:00