Skip to content

Commit

Permalink
Update crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
czocher committed Jul 1, 2023
1 parent 97a5ade commit 50e2e7e
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion annotation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ repository = "https://github.com/1Password/typeshare"
proc-macro = true

[dependencies]
syn = { version = "1.0", features = ["parsing", "proc-macro"] }
syn = { version = "2.0.18", features = ["parsing", "proc-macro"] }
quote = "1.0"
2 changes: 1 addition & 1 deletion annotation/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ fn strip_configuration_attribute(item: &mut DeriveInput) {
fn remove_configuration_from_attributes(attributes: &mut Vec<Attribute>) {
const CONFIG_ATTRIBUTE_NAME: &str = "typeshare";

attributes.retain(|x| x.path.to_token_stream().to_string() != CONFIG_ATTRIBUTE_NAME);
attributes.retain(|x| x.path().to_token_stream().to_string() != CONFIG_ATTRIBUTE_NAME);
}

fn remove_configuration_from_fields(fields: &mut Fields) {
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ clap_complete_command = "0.3"
ignore = "0.4"
once_cell = "1"
rayon = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde = { version = "1.0.164", features = ["derive"] }
toml = "0.5"
typeshare-core = { path = "../core", version = "1.6.0" }
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/1Password/typeshare"
proc-macro2 = "1"
quote = "1"
syn = { version = "2.0.18", features = ["full"] }
thiserror = "1"
thiserror = "1.0.40"
itertools = "0.10"
lazy_format = "1.8"
joinery = "2"
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ repository = "https://github.com/1Password/typeshare"

[dependencies]
chrono = { version = "0.4", default-features = false, features = ["clock", "std", "wasmbind"] }
serde = { version = "1", features = ["derive"] }
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1"
typeshare-annotation = { path = "../annotation", version = "1.0.0" }

0 comments on commit 50e2e7e

Please sign in to comment.