Skip to content

Commit

Permalink
Merge pull request #27 from slog-rs/dependabot/cargo/syn-2.0.37
Browse files Browse the repository at this point in the history
Update syn requirement from 1.0.36 to 2.0.37
  • Loading branch information
bossmc authored Oct 6, 2023
2 parents d1574a5 + 8a91d85 commit 9375c4e
Show file tree
Hide file tree
Showing 5 changed files with 511 additions and 498 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Changed
### Fixed

### Added
- Allow providing the `Id` field of `LogDetails` as a literal integer as well as a quoted integer
- Allow providing the `Value` field of `StatTrigger` as a literal integer as well as a quoted integer

### Fixed
- Migrate to `syn v2.0`

## [8.0.0]

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ iobuffer = "0.2"
serde = { version = "1.0", features = ["derive"] }
erased-serde = "0.3"
serde_json = "1.0"
slog = { version = "2.4", features = [ "nested-values" ] }
slog-json = { version = "2.1", features = [ "nested-values" ] }
slog = { version = "2.7", features = [ "nested-values" ] }
slog-json = { version = "2.6", features = [ "nested-values" ] }

# Used by the interval_logging feature
tokio = { version = "1", features = [ "rt", "time" ], optional = true }
Expand Down
10 changes: 5 additions & 5 deletions slog-extlog-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ readme = "../README.md"
edition = "2018"

[dependencies]
proc-macro2 = "1.0.19"
slog = { version = "2.4", features = ['nested-values'] }
syn = { version = "1.0.36", features = ["full"] }
quote = "1.0.7"
proc-macro2 = "1.0.68"
slog = { version = "2.7", features = ['nested-values'] }
syn = { version = "2.0.38", features = ["full", "extra-traits"] }
quote = "1.0.33"

[lib]
proc-macro = true
Expand All @@ -30,4 +30,4 @@ serde = { version = "1.0", features = ["derive"] }
# This is a known problem in Cargo - see
# https://github.com/rust-lang/cargo/issues/4242 for tracking issue.
slog-extlog = { path = ".." }
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.32", features = ["macros", "rt-multi-thread"] }
Loading

0 comments on commit 9375c4e

Please sign in to comment.