-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
27 lines (25 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
authors = [ "Albert Chon <[email protected]>", "F Grabner <[email protected]>", "Markus Waas <[email protected]>" ]
description = "Bindings for CosmWasm contracts to call into custom modules of Injective Core"
edition = "2021"
license = "Apache-2.0"
name = "injective-cosmwasm"
readme = "README.md"
repository = "https://github.com/InjectiveLabs/cw-injective/tree/dev/packages/injective-cosmwasm"
version = "0.3.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cosmwasm-std = { workspace = true }
cw-storage-plus = { workspace = true }
ethereum-types = { workspace = true }
hex = { workspace = true }
injective-math = { path = "../../packages/injective-math" }
schemars = { workspace = true }
serde = { workspace = true }
serde_repr = { workspace = true }
subtle-encoding = { workspace = true }
tiny-keccak = { workspace = true }
[dev-dependencies]
cosmwasm-schema = { workspace = true }
serde-json-wasm = { workspace = true }
serde_test = { workspace = true }