Skip to content

Commit

Permalink
chore: Update proc-macro-crate deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jawoznia committed May 23, 2024
1 parent e145ddc commit d4a7c1f
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 44 deletions.
42 changes: 25 additions & 17 deletions Cargo.lock

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

48 changes: 28 additions & 20 deletions examples/Cargo.lock

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

10 changes: 5 additions & 5 deletions sylvia-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ cosmwasm_1_2 = []
proc-macro = true

[dependencies]
syn = { version = "2.0.48", features = [
syn = { version = "2.0.65", features = [
"fold",
"visit",
"full",
"extra-traits",
] }
quote = "1.0.23"
proc-macro2 = "1.0.50"
quote = "1.0.36"
proc-macro2 = "1.0.83"
convert_case = "0.6.0"
proc-macro-error = "1.0.4"
proc-macro-crate = "1.3.0"
itertools = "0.12.0"
proc-macro-crate = "3.1.0"
itertools = "0.13.0"

[dev-dependencies]
sylvia-runtime-macros = "0.6.0"
Expand Down
2 changes: 1 addition & 1 deletion sylvia/tests/messages_generation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub struct MyQuery;

impl CustomQuery for MyQuery {}

mod interface {
pub mod interface {
use cosmwasm_std::{Addr, Decimal, Response, StdError};
use sylvia::interface;
use sylvia::types::{ExecCtx, QueryCtx, SudoCtx};
Expand Down
2 changes: 1 addition & 1 deletion sylvia/tests/query_returns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub struct QueryResponse;

type QueryResult<E> = Result<QueryResponse, E>;

mod msg {
pub mod msg {
use cosmwasm_std::StdError;
use sylvia::interface;
use sylvia::types::QueryCtx;
Expand Down

0 comments on commit d4a7c1f

Please sign in to comment.