[package]
edition = "2021"
name = "fidius-host"
version = "0.2.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Host-side loading and calling for the Fidius plugin framework"
readme = false
license = "Apache-2.0"
repository = "https://github.com/colliery-io/fidius"
[features]
python = ["dep:fidius-python"]
tracing = ["dep:tracing"]
[lib]
name = "fidius_host"
path = "src/lib.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "package_e2e"
path = "tests/package_e2e.rs"
[[test]]
name = "plugin_dep_graph"
path = "tests/plugin_dep_graph.rs"
[[test]]
name = "python_plugin_e2e"
path = "tests/python_plugin_e2e.rs"
[[test]]
name = "python_routing"
path = "tests/python_routing.rs"
[dependencies.ed25519-dalek]
version = "2"
features = [
"std",
"rand_core",
]
[dependencies.fidius-core]
version = "0.2.0"
[dependencies.fidius-python]
version = "0.2.0"
optional = true
[dependencies.libloading]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
optional = true
[dev-dependencies.ed25519-dalek]
version = "2"
features = [
"std",
"rand_core",
]
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.pyo3-build-config]
version = "0.25"