-
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 apollo-sturdy/dev/split-implementation-cr…
…ates feat: split out implementations to separate crates
- Loading branch information
Showing
54 changed files
with
1,401 additions
and
183 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[package] | ||
name = "cw-dex-astroport" | ||
authors = ["Apollo Devs"] | ||
description = "Implementation of the cw-dex API for the Astroport AMM" | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
repository = "https://github.com/apollodao/cw-dex" | ||
version = "0.1.0" | ||
readme = "README.md" | ||
|
||
[features] | ||
default = [] | ||
osmosis-test-tube = ["cw-it/osmosis-test-tube", "cw-dex-test-helpers/osmosis-test-tube"] | ||
# backtraces = ["cosmwasm-std/backtraces", "osmosis-std/backtraces"] | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[dependencies] | ||
cw-dex = { workspace = true } | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
apollo-cw-asset = { workspace = true, features = ["astroport"] } | ||
cw-utils = { workspace = true } | ||
cw20 = { workspace = true } | ||
apollo-utils = { workspace = true } | ||
|
||
# Astroport | ||
astroport = { workspace = true } | ||
astroport_v3 = { workspace = true } | ||
cw2 = { workspace = true } | ||
|
||
[dev-dependencies] | ||
cw-it = { workspace = true, features = ["astroport", "multi-test", "astroport-multi-test"] } | ||
test-case = { workspace = true } | ||
cw-dex-test-contract = { workspace = true } | ||
cw-dex-test-helpers = { workspace = true, features = ["astroport"] } | ||
proptest = { workspace = true } | ||
cw20-base = { workspace = true } | ||
cw20 = { workspace = true } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
//! Pool and Staking implementations for Astroport | ||
mod pool; | ||
mod staking; | ||
|
||
pub use pool::AstroportPool; | ||
pub use staking::AstroportStaking; | ||
|
||
pub use {astroport, astroport_v3}; |
Oops, something went wrong.