JavaScript is disabled, refresh for a better experience. ambee/giterated

ambee/giterated

Git repository hosting, collaboration, and discovery for the Fediverse.

More progress :)

Amber - ⁨1⁩ year ago

parent: tbd commit: ⁨92c3f32

⁨plugins/example-plugin/Cargo.toml⁩ - ⁨684⁩ bytes
Raw
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-plugin-sys = { path = "../../giterated-plugin/giterated-plugin-sys" }
16 giterated-static-runtime = { path = "../../giterated-plugin/giterated-static-runtime" }
17 dlopen2 = "0.6"
18 tracing-subscriber = "0.3"
19 giterated-models = { path = "../../giterated-models" }
20 tracing = "0.1"
21 serde_json = "1.0"
22 anyhow = "1"
23 tokio = { version = "1.32", features = [ "full" ] }