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

ambee/giterated

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

Structure refactoring

Amber - ⁨1⁩ year ago

parent: tbd commit: ⁨a8f41ac

⁨plugins/giterated-protocol/Cargo.toml⁩ - ⁨760⁩ bytes
Raw
1 [package]
2 name = "giterated-protocol"
3 version = "0.1.0"
4 edition = "2021"
5
6 [lib]
7 name = "giterated_protocol"
8 path = "src/lib.rs"
9 crate-type = ["dylib", "rlib"]
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-models = { path = "../../giterated-models" }
16 serde = { version = "1.0", features = [ "derive" ]}
17 anyhow = "1"
18 toml = { version = "0.8" }
19 tracing = "0.1"
20 tracing-subscriber = "0.3"
21 serde_json = "1.0"
22 rand = "0.8"
23 rsa = {version = "0.9", features = ["sha2"]}
24 tokio-tungstenite = { version = "0.20" }
25 tokio = { version = "1.32.0", features = ["full"] }
26 thiserror = "1"
27 bincode = "1.3"
28 futures-util = "0.3"
29 async-trait = "0.1"