Skip to content

Commit c5fa4ca

Browse files
authored
Merge pull request #13 from bandprotocol/refactor
Refactor
2 parents a9e6767 + a53ea7e commit c5fa4ca

File tree

17 files changed

+954
-554
lines changed

17 files changed

+954
-554
lines changed

packages/crypto/Cargo.toml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11
[package]
2-
name = "owasm-crypto"
3-
version = "0.1.13"
42
authors = ["Band Protocol <[email protected]>"]
3+
description = "Cryoto functions for Oracle script"
54
edition = "2018"
65
license = "Apache-2.0"
7-
repository = "https://github.com/bandprotocol/owasm/tree/master/packages/crypto"
8-
description = "Cryoto functions for Oracle script"
6+
name = "owasm-crypto"
97
readme = "README.md"
8+
repository = "https://github.com/bandprotocol/owasm/tree/master/packages/crypto"
9+
version = "0.2.0"
10+
11+
[features]
12+
default = []
13+
# backtraces provides much better context at runtime errors (in non-wasm code)
14+
# at the cost of a bit of code size and performance.
15+
# This feature requires Rust nightly because it depends on the unstable backtrace feature.
16+
backtraces = []
1017

1118
[dependencies]
1219
hex = "0.4.3"
20+
lazy_static = "1.4.0"
1321
rust-gmp = "0.5.0"
1422
sha2 = "0.9.5"
15-
sha3 = "0.9.1"
16-
lazy_static = "1.4.0"
23+
thiserror = "1.0"

0 commit comments

Comments
 (0)