[package] name = "example-plugin" version = "0.1.0" edition = "2021" [lib] name = "example_plugin_dylib" path = "src/lib.rs" crate-type = ["dylib"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] giterated-plugin = { path = "../../giterated-plugin" } giterated-static-runtime = { path = "../../giterated-runtime/giterated-static-runtime" } dlopen2 = "0.6" tracing-subscriber = "0.3" giterated-models = { path = "../../giterated-models" } tracing = "0.1" serde_json = "1.0" anyhow = "1" tokio = { version = "1.32", features = [ "full" ] }