diff --git a/Cargo.toml b/Cargo.toml index 7fc8728..a7f11a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,13 +6,12 @@ edition = "2021" [dependencies] async-std = "1.10.0" +async-stream = "0.3.2" base64 = "0.13.0" futures = "0.3.18" hex = "0.4.3" kuska-handshake = { version = "0.2.0", features = ["async_std"] } kuska-sodiumoxide = "0.2.5-0" -# waiting for a pr merge upstream -kuska-ssb = { path = "../ssb" } +kuska-ssb = { git = "https://github.com/Kuska-ssb/ssb" } serde = { version = "1", features = ["derive"] } serde_json = "1" -async-stream = "0.3.2" \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index 84321e5..1869e24 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -30,6 +30,8 @@ //! queries; to follow, unfollow, block and unblock a peer; to query the social //! graph; and to generate pub invite codes. //! +//! Visit the [API modules](crate::api) to view the available methods. +//! //! ## Example Usage //! //! Basic usage is demonstrated below. Visit the [examples directory](https://git.coopcloud.tech/golgi-ssb/golgi/src/branch/main/examples) in the `golgi` repository for