ff-cli 0.1.0

A pluggable command-line framework for extensible CLI applications
Documentation
[package]
name = "ff-cli"
version = "0.1.0"
edition = "2021"
authors = ["seekstorm <seekstorm@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "A pluggable command-line framework for extensible CLI applications"
repository = "https://github.com/seekstorm/ff-cli"
keywords = ["cli", "plugin", "extensible", "command"]
categories = ["command-line-utilities"]
readme = "README.md"

[dependencies]
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
anyhow = "1.0"
libloading = { version = "0.8", optional = true }

[features]
default = []
dynamic-plugins = ["libloading"]