[package]
edition = "2021"
name = "scarab-plugin-api"
version = "0.3.3"
authors = ["Scarab Team <team@raibid-labs.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Plugin API for Scarab terminal emulator: traits, manifest schema, and host bindings for building Scarab plugins"
homepage = "https://github.com/raibid-labs/scarab"
documentation = "https://docs.rs/scarab-plugin-api"
readme = "README.md"
keywords = [
"scarab",
"terminal",
"plugin",
"fusabi",
"tui",
]
categories = [
"api-bindings",
"command-line-interface",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/raibid-labs/scarab"
[lib]
name = "scarab_plugin_api"
path = "src/lib.rs"
[[test]]
name = "fusabi_bindings_test"
path = "tests/fusabi_bindings_test.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.bitflags]
version = "2.4"
features = ["serde"]
[dependencies.chrono]
version = "0.4"
[dependencies.fusabi-plugin-runtime]
version = "0.1.1"
[dependencies.fusabi-stdlib-ext]
version = "0.1.1"
[dependencies.log]
version = "0.4"
[dependencies.parking_lot]
version = "0.12"
[dependencies.rand]
version = "0.8"
[dependencies.scarab-protocol]
version = "0.3.3"
[dependencies.semver]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "1.0"
[dependencies.toml]
version = "0.8"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1.48"
features = [
"full",
"macros",
"rt-multi-thread",
]