[package] name = "astroport-oracle" version = "2.1.2" authors = ["Astroport"] edition = "2021" description = "Astroport price oracle contract which works with Astroport pair contracts" license = "GPL-3.0-only" repository = "https://github.com/astroport-fi/astroport" homepage = "https://astroport.fi" exclude = [ # Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication. "contract.wasm", "hash.txt", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] crate-type = ["cdylib", "rlib"] [features] # for more explicit tests, cargo test --features=backtraces backtraces = ["cosmwasm-std/backtraces"] [dependencies] cosmwasm-std = { version = "1.1" } cw-storage-plus = "0.15" thiserror = { version = "1.0" } cw2 = "0.15" cw20 = "0.15" astroport = { path = "../../../packages/astroport", version = "3" } cosmwasm-schema = { version = "1.1" } [dev-dependencies] astroport-token = { path = "../../token" } astroport-factory = { path = "../../factory" } astroport-pair = { path = "../../pair" } astroport-pair-stable = { path = "../../pair_stable" } cw-multi-test = "1.0.0" itertools = "0.10" anyhow = "1.0" astroport-native-coin-registry = { path = "../../periphery/native_coin_registry" }