[package]
edition = "2024"
name = "bynk"
version = "0.58.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Bynk driver — a thin orchestrator over the bynkc compiler and the Node toolchain (cargo is to rustc as bynk is to bynkc)."
homepage = "https://github.com/accuser/bynk"
readme = "README.md"
keywords = [
"bynk",
"cli",
"toolchain",
"driver",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/accuser/bynk"
[lib]
name = "bynk"
path = "src/lib.rs"
[[bin]]
name = "bynk"
path = "src/main.rs"
[[test]]
name = "dev"
path = "tests/dev.rs"
[[test]]
name = "doctor"
path = "tests/doctor.rs"
[[test]]
name = "new"
path = "tests/new.rs"
[dependencies.bynkc]
version = "0.58.0"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.which]
version = "7"
[dev-dependencies]