base-converter 2.0.0

Convert a number in any base to any other base
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "base-converter"
version = "2.0.0"
authors = ["Charles Tison <ctison@pm.me>"]
include = ["src/**/*.rs"]
description = "Convert a number in any base to any other base"
readme = "README.md"
keywords = [
    "base",
    "conversion",
]
categories = [
    "algorithms",
    "command-line-utilities",
    "mathematics",
    "wasm",
]
license = "MIT"
repository = "https://github.com/ctison/base-converter"

[lib]
crate-type = [
    "cdylib",
    "rlib",
]

[[bin]]
name = "base-converter"
required-features = ["bin"]

[dependencies.anyhow]
version = "1.0.66"

[dependencies.clap]
version = "4.4.10"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "1.0.37"

[dependencies.wasm-bindgen]
version = "0.2.83"
optional = true

[features]
bin = ["dep:clap"]
wasm = ["dep:wasm-bindgen"]