boltffi_cli 0.2.0

CLI for BoltFFI - generate Swift, Kotlin, and WASM bindings from Rust
[package]
name = "boltffi_cli"
version = "0.2.0"
edition = "2024"
authors = ["Ali A. Hilal <me@alihilal.com>"]
license = "MIT"
description = "CLI for BoltFFI - generate Swift, Kotlin, and WASM bindings from Rust"
repository = "https://github.com/boltffi/boltffi"
homepage = "https://boltffi.dev"
readme = "../README.md"
keywords = ["ffi", "cli", "codegen", "swift", "kotlin"]
categories = ["development-tools::ffi", "development-tools::build-utils", "command-line-utilities"]

[[bin]]
name = "boltffi"
path = "src/main.rs"

[dependencies]
boltffi_bindgen = { version = "0.2.0", path = "../boltffi_bindgen" }
boltffi_verify = { version = "0.2.0", path = "../boltffi_verify" }
clap = { version = "4.4", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
toml = "1.0"
thiserror = "2.0"
which = "8.0"
sha2 = "0.10"
hex = "0.4"
zip = "8.1"
walkdir = "2.4"
serde_json = "1.0"
console = "0.16"
indicatif = "0.18"

[lints]
workspace = true