[package]
edition = "2024"
name = "conv_bit"
version = "0.2.0"
authors = ["Jae-Hwan Chung <dialektike@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "컴퓨터 구조 학습을 위한 숫자 진법 변환 라이브러리"
readme = "README.md"
keywords = [
"binary",
"bit",
"conversion",
"number",
]
categories = [
"command-line-utilities",
"algorithms",
"encoding",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/example/conv_bit"
[lib]
name = "conv_bit"
path = "src/lib.rs"
[[test]]
name = "conv_tests"
path = "tests/conv_tests.rs"
[[test]]
name = "number_tests"
path = "tests/number_tests.rs"
[dependencies]