Skip to content

Commit

Permalink
feat: docs&version updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasz2891 committed Sep 23, 2024
1 parent 8aab6d4 commit 7282297
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "redstone"
version = "1.0.0"
version = "1.1.0"
edition = "2021"
authors = ["RedStone <https://redstone.finance>"]
description = "A Rust implementation of deserializing&decrypting RedStone payload"
Expand All @@ -11,10 +11,10 @@ default = ["pure"]
# Pure Rust, no specific network extension
pure = ["primitive-types"]

# An extension for casper network
# An extension for Casper network
network_casper = ["casper-contract/wee_alloc", "casper-types"]

# An extension for radix network
# An extension for Radix network
network_radix = ["radix-common", "scrypto"]

# An extension for debug-printing of messages in the Casper extension. Not supported by Casper Contracts deployed to the network.
Expand All @@ -41,7 +41,7 @@ sha3 = { version = "^0.10.8", default-features = false, features = ["asm"] }
k256 = { version = "^0.13.3", default-features = false, features = [], optional = true }
secp256k1 = { version = "^0.29.0", default-features = false, features = [], optional = true }
hex = { version = "^0.4.3", default-features = false, features = [], optional = true }
primitive-types = { version = "^0.12.2", optional = true }
primitive-types = { version = "^0.13.1", optional = true }

[dev-dependencies]
itertools = { version = "^0.13.0" }
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,12 @@

## See autogenerated docs for:

1. [`redstone` crate with `crypto_secp256k1` and `network_casper`](https://redstone-docs-git-casper-redstone-finance.vercel.app/rust/casper/redstone/crypto_secp256k1,network_casper/redstone/index.html)
features (the base version for [contracts](../contracts/README.md))
1. [`redstone` crate with
`crypto_secp256k1`](https://docs.redstone.finance/rust/redstone/crypto_secp256k1/redstone/index.html)
pure Rust implementation
2. [`redstone` crate with `crypto_secp256k1` and
`network_casper`](https://docs.redstone.finance/rust/redstone/crypto_secp256k1,network_casper/redstone/index.html)
extension for Casper
3. [`redstone` crate with `crypto_secp256k1` and
`network_radix`](https://docs.redstone.finance/rust/redstone/crypto_secp256k1,network_radix/redstone/index.html)
extension for Radix
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! # RedStone
//!
//! `redstone` is a collection of utilities to make deserializing&decrypting RedStone payload.
//! It contains a pure Rust implementation and also an extension for the Casper network.
//! It includes a pure Rust implementation, along with extensions for certain networks.
//!
//! Different crypto-mechanisms are easily injectable.
//! The current implementation contains `secp256k1`- and `k256`-based variants.
Expand Down

0 comments on commit 7282297

Please sign in to comment.