51 lines
1.6 KiB
TOML
51 lines
1.6 KiB
TOML
[package]
|
|
name = "pyth-cosmwasm"
|
|
version = "1.3.0"
|
|
authors = ["Wormhole Contributors <contact@certus.one>"]
|
|
edition = "2018"
|
|
description = "Pyth price receiver"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
# IMPORTANT: if you want to build for injective or osmosis, enable injective default feature for injective
|
|
# and osmosis default feature for osmosis
|
|
# default=["injective"]
|
|
# default=["osmosis"]
|
|
backtraces = ["cosmwasm-std/backtraces"]
|
|
# use library feature to disable all init/handle/query exports
|
|
library = []
|
|
injective = ["dep:serde_repr"]
|
|
osmosis=["pyth-sdk-cw/osmosis"]
|
|
|
|
[dependencies]
|
|
cosmwasm-std = { version = "1.0.0" }
|
|
cosmwasm-storage = { version = "1.0.0" }
|
|
schemars = "0.8.1"
|
|
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
|
|
serde_derive = { version = "1.0.103"}
|
|
serde_repr = { version="0.1", optional = true}
|
|
terraswap = "2.4.0"
|
|
thiserror = { version = "1.0.20" }
|
|
sha3 = { version = "0.9.1", default-features = false }
|
|
generic-array = { version = "0.14.4" }
|
|
hex = "0.4.2"
|
|
lazy_static = "1.4.0"
|
|
bigint = "4"
|
|
pyth-wormhole-attester-sdk = { path = "../../../../wormhole_attester/sdk/rust" }
|
|
pyth-sdk = "0.7.0"
|
|
byteorder = "1.4.3"
|
|
cosmwasm-schema = "1.1.9"
|
|
osmosis-std = "0.15.2"
|
|
pyth-sdk-cw = { path = "../../sdk/rust" }
|
|
pythnet-sdk = { path = "../../../../pythnet/pythnet_sdk" }
|
|
wormhole-cosmwasm = {git = "https://github.com/wormhole-foundation/wormhole", tag="rust-sdk-2024-01-25"}
|
|
|
|
[dev-dependencies]
|
|
cosmwasm-vm = { version = "1.0.0", default-features = false }
|
|
serde_json = "1.0"
|
|
pythnet-sdk = { path = "../../../../pythnet/pythnet_sdk", features = ["test-utils"] }
|
|
serde_wormhole = "0.1.0"
|
|
wormhole-vaas-serde = "0.1.0"
|