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-05-10 13:57:36 +02:00
|
|
|
[package]
|
2024-05-10 15:55:24 +02:00
|
|
|
name = "numf"
|
2024-05-10 13:57:36 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
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"
|
2024-05-12 01:55:56 +02:00
|
|
|
fast32 = "1.0.2"
|
2024-05-12 18:36:36 +02:00
|
|
|
libpt = { version = "0.5.0", features = ["bintols"]}
|
2024-05-13 13:51:17 +02:00
|
|
|
num = "0.4.3"
|
2024-05-10 13:57:36 +02:00
|
|
|
|