[package] name = "giterated-protocol" version = "0.1.0" edition = "2021" [lib] name = "giterated_protocol" path = "src/lib.rs" crate-type = ["dylib", "rlib"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] giterated-plugin = { path = "../../giterated-plugin" } giterated-models = { path = "../../giterated-models" } serde = { version = "1.0", features = [ "derive" ]} anyhow = "1" toml = { version = "0.8" } tracing = "0.1" tracing-subscriber = "0.3" serde_json = "1.0" rand = "0.8" rsa = {version = "0.9", features = ["sha2"]} tokio-tungstenite = { version = "0.20" } tokio = { version = "1.32.0", features = ["full"] } thiserror = "1" bincode = "1.3" futures-util = "0.3" async-trait = "0.1"