-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (34 loc) · 1003 Bytes
/
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
28
29
30
31
32
33
34
35
36
37
38
[package]
authors = ["shapeshed <[email protected]>"]
categories = ["wasm"]
description = "Example implementation using Vaultenator"
edition = "2021"
homepage = "https://github.com/margined-protocol/example-vault"
keywords = ["cosmos", "osmosis", "vault", "vaultenator"]
license = "MIT OR Apache-2.0"
name = "example-vault"
publish = false
readme = "README.md"
repository = "https://github.com/margined-protocol/example-vault"
resolver = "2"
rust-version = "1.76.0"
version = "0.0.2"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
backtraces = ["cosmwasm-std/backtraces"]
library = []
[dependencies]
cosmwasm-schema = "2.0.0"
cosmwasm-std = "1.5.3"
cw-controllers = "1.1.2"
cw-storage-plus = "1.2.0"
cw-utils = "1.0.3"
cw2 = "1.1.2"
osmosis-std = "0.22.0"
serde = "1.0.197"
serde_json = "1.0.115"
vaultenator = "0.0.3"
[dev-dependencies]
cw-vault-standard = "0.4.0"
osmosis-test-tube = "22.1.0"