Skip to content

Commit

Permalink
name
Browse files Browse the repository at this point in the history
  • Loading branch information
RedstoneWizard08 committed Jul 10, 2024
1 parent 0f5722e commit 052b4c0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions crates/rpc-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ repository.workspace = true
homepage.workspace = true
authors.workspace = true

description = """
A blazingly fast, lightweight, and type-safe RPC/IPC framework for
Rust and Web/Tauri-based applications, based on `specta`.
"""

[features]
default = []
axum = ["dep:axum", "dep:http-body-util"]
Expand Down
2 changes: 1 addition & 1 deletion crates/rpc-rs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rpc-rs

A blazingly fast, lightweight, idiomatic, and type-safe RPC/IPC framework for
A blazingly fast, lightweight, and type-safe RPC/IPC framework for
Rust and Web/Tauri-based applications, based on `specta`.

## Introduction
Expand Down
2 changes: 2 additions & 0 deletions crates/rpc-rs/src/module/builder.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! The [`ModuleBuilder`] module.
use crate::{proc::GenericProcedure, util::TripleS};

use super::module::Module;
Expand Down
2 changes: 2 additions & 0 deletions crates/rpc-rs/src/module/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! The modules module. module. module.
pub mod builder;
pub mod module;

Expand Down
2 changes: 2 additions & 0 deletions crates/rpc-rs/src/module/module.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! The [`Module`] module. module.
use std::sync::Arc;

use serde_json::Error;
Expand Down

0 comments on commit 052b4c0

Please sign in to comment.