-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(ensemble): separate from main rust package
- Loading branch information
Showing
21 changed files
with
1,572 additions
and
24 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 |
---|---|---|
|
@@ -8,18 +8,13 @@ description = "Tools and frequently used functionality for developing CosmWasm s | |
repository = "https://github.com/hackbg/fadroma" | ||
readme = "README.md" | ||
authors = [ | ||
# Core maintainers: | ||
"Adam A. <[email protected]>", | ||
"Asparuh Kamenov <[email protected]>", | ||
"denismaxim0v <[email protected]>", | ||
|
||
# Featuring contributions by: | ||
"Chris Ricketts <[email protected]>", | ||
"Tibor Hudik <[email protected]>", | ||
"Wiz1991 <[email protected]>", | ||
"hydropump3 <[email protected]>", | ||
|
||
# SNIP-20 implementation based on: | ||
"Itzik <[email protected]>" | ||
] | ||
|
||
|
@@ -32,10 +27,9 @@ all-features = true | |
|
||
[features] | ||
scrt = ["secret-cosmwasm-std"] | ||
scrt-staking = ["secret-cosmwasm-std/staking"] | ||
permit = ["scrt", "ripemd", "sha2", "remain", "bech32"] | ||
vk = ["scrt", "crypto", "subtle"] | ||
ensemble = [ "oorandom", "anyhow" ] | ||
ensemble-staking = [ "ensemble", "time/formatting", "staking" ] | ||
crypto = ["rand_core", "rand_chacha", "sha2"] | ||
snip20 = ["scrt", "permit", "vk"] | ||
|
||
|
Oops, something went wrong.