Skip to content

Commit ff30aff

Browse files
authored
Merge pull request #2 from n0-computer/initial-release
chore: release
2 parents 3b69a4c + 324a5f6 commit ff30aff

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

irpc-iroh/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
name = "irpc-iroh"
33
version = "0.1.0"
44
edition = "2024"
5+
authors = ["Rüdiger Klaehn <[email protected]>", "n0 team"]
6+
keywords = ["api", "protocol", "network", "rpc"]
7+
categories = ["network-programming"]
8+
license = "Apache-2.0/MIT"
9+
repository = "https://github.com/n0-computer/irpc"
10+
description = "Iroh transport for irpc"
511

612
[dependencies]
713
anyhow = "1.0.97"

src/lib.rs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! # A minimal RPC library for use with [iroh].
1+
//! # A minimal RPC library for use with [iroh](https://docs.rs/iroh/latest/iroh/index.html).
22
//!
33
//! ## Goals
44
//!
@@ -74,13 +74,12 @@
7474
//! This crate evolved out of the [quic-rpc] crate, which is a generic RPC
7575
//! framework for any transport with cheap streams such as QUIC. Compared to
7676
//! quic-rpc, this crate does not abstract over the stream type and is focused
77-
//! on [iroh] and our [iroh quinn fork].
77+
//! on [iroh](https://docs.rs/iroh/latest/iroh/index.html) and our [iroh quinn fork].
7878
//!
79-
//! - quic-rpc: https://docs.rs/quic-rpc/latest/quic-rpc/index.html
80-
//! - iroh: https://docs.rs/iroh/latest/iroh/index.html
81-
//! - quinn: https://docs.rs/quinn/latest/quinn/index.html
82-
//! - bytes: https://docs.rs/bytes/latest/bytes/index.html
83-
//! - iroh quinn fork: https://docs.rs/iroh-quinn/latest/iroh-quinn/index.html
79+
//! - [quic-rpc](https://docs.rs/quic-rpc/latest/quic-rpc/index.html)
80+
//! - [quinn](https://docs.rs/quinn/latest/quinn/index.html)
81+
//! - [bytes](https://docs.rs/bytes/latest/bytes/index.html)
82+
//! - [iroh quinn fork](https://docs.rs/iroh-quinn/latest/iroh-quinn/index.html)
8483
#![cfg_attr(quicrpc_docsrs, feature(doc_cfg))]
8584
use std::{fmt::Debug, future::Future, io, marker::PhantomData, ops::Deref};
8685

0 commit comments

Comments
 (0)