From ab4eec3f5782783f71e7c49ba6749ab9c995b0e4 Mon Sep 17 00:00:00 2001 From: sevki Date: Thu, 14 Mar 2024 02:32:01 +0000 Subject: [PATCH] bump to v0.1.5 --- Cargo.toml | 2 +- README.md | 4 ++-- src/log.rs | 2 ++ third_party/p9_wire_format_derive/Cargo.toml | 2 +- third_party/rust-p9/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4778535..b5ceab0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jetstream" -version = "0.1.4" +version = "0.1.5" edition = "2021" description = "Jetstream is a RPC framework for Rust, based on the 9P protocol and QUIC." license = "BSD-3-Clause" diff --git a/README.md b/README.md index b0c51cf..ba69f67 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,6 @@ JetStream is not ready for production use. It's still in the early stages of dev - [jsonrpc](https://www.jsonrpc.org/) - [xmlrpc](http://xmlrpc.scripting.com/) -## License +## [License](LICENSE) -BSD-3-Clause like the rest of the rust-p9 packages this relises on. \ No newline at end of file +BSD-3-Clause \ No newline at end of file diff --git a/src/log.rs b/src/log.rs index 8f6f2ae..5c7eca2 100644 --- a/src/log.rs +++ b/src/log.rs @@ -22,12 +22,14 @@ fn get_module_colour(module: &str) -> Color { color } +#[allow(dead_code)] pub(crate) fn setup_logging() -> Logger { let x = drain(); slog::Logger::root(x, slog_o!()) } +#[allow(dead_code)] pub(crate) fn drain() -> slog::Fuse< slog_term::FullFormat>, > { diff --git a/third_party/p9_wire_format_derive/Cargo.toml b/third_party/p9_wire_format_derive/Cargo.toml index d8f635f..aa3110b 100644 --- a/third_party/p9_wire_format_derive/Cargo.toml +++ b/third_party/p9_wire_format_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jetstream_p9_wire_format_derive" -version = "0.1.4" +version = "0.1.5" authors = ["The ChromiumOS Authors"] license = "BSD-3-Clause" description = "Supporting proc-macro for the `p9` crate." diff --git a/third_party/rust-p9/Cargo.toml b/third_party/rust-p9/Cargo.toml index f0aeff3..4ab8f28 100644 --- a/third_party/rust-p9/Cargo.toml +++ b/third_party/rust-p9/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jetstream_p9" -version = "0.1.4" +version = "0.1.5" authors = ["The ChromiumOS Authors"] edition = "2021" license = "BSD-3-Clause"