Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yanganto committed Oct 1, 2021
1 parent 6c5d4e5 commit 7db3bdb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions README.md
@@ -1,22 +1,22 @@
# SewUp

![GitHub Workflow Status](https://img.shields.io/github/workflow/status/second-state/SewUp/CI)
[![Generic badge](https://img.shields.io/badge/sewup-0.1.2-green.svg)](https://crates.io/crates/sewup)
[![Generic badge](https://img.shields.io/badge/sewup-0.1.3-green.svg)](https://crates.io/crates/sewup)
[![Generic badge](https://img.shields.io/badge/SewUpDoc-main-green.svg)](https://second-state.github.io/SewUp/sewup/)
[![Generic badge](https://img.shields.io/badge/sewup_derive-0.1.2-green.svg)](https://crates.io/crates/sewup-derive)
[![Generic badge](https://img.shields.io/badge/sewup_derive-0.1.3-green.svg)](https://crates.io/crates/sewup-derive)
[![Generic badge](https://img.shields.io/badge/SewUpDeriveDoc-main-green.svg)](https://second-state.github.io/SewUp/sewup_derive/)
[![Generic badge](https://img.shields.io/badge/cargo_sewup-0.1.2-green.svg)](https://crates.io/crates/cargo-sewup)
[![Generic badge](https://img.shields.io/badge/cargo_sewup-0.1.3-green.svg)](https://crates.io/crates/cargo-sewup)

**S**econdstate **EW**asm **U**tility **P**rogram, a library helps you sew up your Ethereum project with Rust and just like development in a common backend.
There is an [issue](https://github.com/second-state/SewUp/issues/116) on building document on Doc.rs, please kindly use the [document](https://second-state.github.io/SewUp/sewup/) of master instead.
Furthermore, there is also [wiki site](https://github.com/second-state/SewUp/wiki) helps you work with sewup, once you got problems or confusing you can learn more on the wiki.

## Slides & Demo
| Date | Event | Slides / Demo video |
|------------|-----------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 2021/10/16 | ParaState Hackathon | [v0.1.2](https://slides.com/yanganto/ethereum-wasm-in-rust) |
| 2021/09/07 | Version 0.1 release | [Hello](https://youtu.be/kbe3uuxkBNQ), [KV](https://youtu.be/LUpYIFGG36s), [RDB](https://youtu.be/sJLOcJRheIw), [ERC-20](https://youtu.be/sVGEuNBY1dc), [ERC-721](https://youtu.be/ivZIqnhOAfA), [ERC-1155](https://youtu.be/BsbAFT5rNGw) |
| 2021/06/19 | Rust meetup (Beijing) | [v0.0.1-pre](https://slides.com/yanganto/sewup) |
| Date | Event | Slides | Demo video |
|------------|-----------------------|--------|----------------------------------------------------|
| 2021/10/16 | ParaState Hackathon | [v0.1.3](https://slides.com/yanganto/ethereum-wasm-in-rust) | |
| 2021/09/07 | Version 0.1 release | | [Hello](https://youtu.be/kbe3uuxkBNQ), [KV](https://youtu.be/LUpYIFGG36s), [RDB](https://youtu.be/sJLOcJRheIw), [ERC-20](https://youtu.be/sVGEuNBY1dc), [ERC-721](https://youtu.be/ivZIqnhOAfA), [ERC-1155](https://youtu.be/BsbAFT5rNGw) |
| 2021/06/19 | Rust meetup (Beijing) | [v0.0.1-pre](https://slides.com/yanganto/sewup) | |

## Usage
Add `sewup` with the features and the `sewup-derive` into Cargo.toml, and setup other sections
Expand All @@ -35,7 +35,7 @@ how to write a flexible smart contract with ewasm.

### Develop
It is easy to setup your sewup project with cargo-sewup with following commands.
- `cargo install --version 0.1.2-1 cargo-sewup`
- `cargo install cargo-sewup`
- `cargo sewup init`
And you can learn more about the project configure with the [Deploy Guide](https://github.com/second-state/SewUp/wiki/Develop-Guide) wiki page.

Expand Down
2 changes: 1 addition & 1 deletion cargo-sewup/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cargo-sewup"
version = "0.1.2-1"
version = "0.1.3"
edition = "2018"
description = "A cli tool for initializing sewup project and deploying ewasm contract"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion sewup/Cargo.toml
Expand Up @@ -18,7 +18,7 @@ serde-value = "0.7.0"
toml = "0.5.8"
ewasm_api = { version = "0.11.0", default-features = false, features = ["std", "qimalloc"], package = "ss_ewasm_api" }
tiny-keccak = { version = "2.0.2", features = ["sha3", "keccak"] }
sewup-derive = { version = "0.1.3", path = "../sewup-derive" }
sewup-derive = { version = "0.1.3" }
bincode = "1.3"
cryptoxide = "0.3.3"
hex-literal = "0.3.1"
Expand Down

0 comments on commit 7db3bdb

Please sign in to comment.