From 695f7ec5f9951300ad717d9ebad28c668686372e Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Thu, 29 Sep 2022 10:35:11 -0400 Subject: [PATCH] Version bump Monero for documentation purposes --- Cargo.lock | 2 +- coins/monero/Cargo.toml | 2 +- coins/monero/src/lib.rs | 32 ++++++++++++++++++-------------- 3 files changed, 20 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4990c5d3..8168e3eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4585,7 +4585,7 @@ dependencies = [ [[package]] name = "monero-serai" -version = "0.1.0-alpha" +version = "0.1.1-alpha" dependencies = [ "base58-monero", "blake2", diff --git a/coins/monero/Cargo.toml b/coins/monero/Cargo.toml index e9630b8f..001de963 100644 --- a/coins/monero/Cargo.toml +++ b/coins/monero/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "monero-serai" -version = "0.1.0-alpha" +version = "0.1.1-alpha" description = "A modern Monero transaction library" license = "MIT" repository = "https://github.com/serai-dex/serai" diff --git a/coins/monero/src/lib.rs b/coins/monero/src/lib.rs index fd69f351..52e1a758 100644 --- a/coins/monero/src/lib.rs +++ b/coins/monero/src/lib.rs @@ -1,19 +1,23 @@ #![cfg_attr(docsrs, feature(doc_auto_cfg))] -//! monero-serai: A modern Monero transaction library intended for usage in wallets. It prides -//! itself on accuracy, correctness, and removing common pit falls developers may face. -//! -//! monero-serai contains safety features, such as first-class acknowledgement of the burning bug, -//! yet also a high level API around creating transactions. monero-serai also offers a FROST-based -//! multisig, which is orders of magnitude more performant than Monero's. -//! -//! monero-serai was written for Serai, a decentralized exchange aiming to support Monero. -//! Despite this, monero-serai is intended to be a widely usable library, accurate to Monero. -//! monero-serai guarantees the functionality needed for Serai, yet will not deprive functionality -//! from other users, and may potentially leave Serai's umbrella at some point. -//! -//! Various legacy transaction formats are not currently implemented, yet monero-serai is still -//! increasing its support for various transaction types. +//! A modern Monero transaction library intended for usage in wallets. It prides +//! itself on accuracy, correctness, and removing common pit falls developers may +//! face. + +//! monero-serai contains safety features, such as first-class acknowledgement of +//! the burning bug, yet also a high level API around creating transactions. +//! monero-serai also offers a FROST-based multisig, which is orders of magnitude +//! more performant than Monero's. + +//! monero-serai was written for Serai, a decentralized exchange aiming to support +//! Monero. Despite this, monero-serai is intended to be a widely usable library, +//! accurate to Monero. monero-serai guarantees the functionality needed for Serai, +//! yet will not deprive functionality from other users, and may potentially leave +//! Serai's umbrella at some point. + +//! Various legacy transaction formats are not currently implemented, yet +//! monero-serai is still increasing its support for various transaction types. + use lazy_static::lazy_static; use rand_core::{RngCore, CryptoRng};