-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from bandprotocol/refactor
Refactor
- Loading branch information
Showing
17 changed files
with
954 additions
and
554 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
[package] | ||
name = "owasm-crypto" | ||
version = "0.1.13" | ||
authors = ["Band Protocol <[email protected]>"] | ||
description = "Cryoto functions for Oracle script" | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/bandprotocol/owasm/tree/master/packages/crypto" | ||
description = "Cryoto functions for Oracle script" | ||
name = "owasm-crypto" | ||
readme = "README.md" | ||
repository = "https://github.com/bandprotocol/owasm/tree/master/packages/crypto" | ||
version = "0.2.0" | ||
|
||
[features] | ||
default = [] | ||
# backtraces provides much better context at runtime errors (in non-wasm code) | ||
# at the cost of a bit of code size and performance. | ||
# This feature requires Rust nightly because it depends on the unstable backtrace feature. | ||
backtraces = [] | ||
|
||
[dependencies] | ||
hex = "0.4.3" | ||
lazy_static = "1.4.0" | ||
rust-gmp = "0.5.0" | ||
sha2 = "0.9.5" | ||
sha3 = "0.9.1" | ||
lazy_static = "1.4.0" | ||
thiserror = "1.0" |
Oops, something went wrong.