Structure refactoring
parent: tbd commit: a8f41ac
1 | [package] |
2 | name = "example-plugin" |
3 | version = "0.1.0" |
4 | edition = "2021" |
5 | |
6 | [lib] |
7 | name = "example_plugin_dylib" |
8 | path = "src/lib.rs" |
9 | crate-type = ["dylib"] |
10 | |
11 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
12 | |
13 | [dependencies] |
14 | giterated-plugin = { path = "../../giterated-plugin" } |
15 | giterated-static-runtime = { path = "../../giterated-runtime/giterated-static-runtime" } |
16 | dlopen2 = "0.6" |
17 | tracing-subscriber = "0.3" |
18 | giterated-models = { path = "../../giterated-models" } |
19 | tracing = "0.1" |
20 | serde_json = "1.0" |
21 | anyhow = "1" |
22 | tokio = { version = "1.32", features = [ "full" ] } |