Skip to content

Commit

Permalink
chore: update the prost and chrono deps to ensure std can be included…
Browse files Browse the repository at this point in the history
… INSIDE CONTRACTS imminently
  • Loading branch information
maxrobot committed Jun 18, 2024
1 parent 620bdbf commit c39a2b1
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 36 deletions.
62 changes: 31 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/injective-protobuf/src/proto/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// @generated

pub mod account;
pub mod auth;
pub mod coin;
pub mod distribution;
pub mod exchange;
pub mod oracle;
pub mod tx;
pub mod oracle;
pub mod account;
6 changes: 3 additions & 3 deletions packages/injective-std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ version = "0.1.7"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
chrono = { version = "0.4.24" }
chrono = { version = "0.4.27", default-features = false }
cosmwasm-std = { version = "1.5.0", features = [ "abort", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "iterator", "stargate" ] }
osmosis-std-derive = { version = "0.20.1" }
prost = { version = "0.12.3" }
prost-types = { version = "0.12.3", default-features = false }
prost = { version = "0.12.4", features = [ "prost-derive" ] }
prost-types = { version = "0.12.4", default-features = false }
schemars = "0.8.8"
serde = { version = "1.0", default-features = false, features = [ "derive" ] }
serde-cw-value = { version = "0.7.0" }

0 comments on commit c39a2b1

Please sign in to comment.