mirror of https://github.com/zkat/miette.git
feat(deps): bump dependencies
Fixes: https://github.com/zkat/miette/issues/336 BREAKING CHANGE: This bumps owo-colors to 4.0, which is a breaking change because we expose its styles as part of the graphical renderer API
This commit is contained in:
parent
c7144ee513
commit
a4011d174c
20
Cargo.toml
20
Cargo.toml
|
|
@ -13,34 +13,34 @@ rust-version = "1.70.0"
|
|||
exclude = ["images/", "tests/", "miette-derive/"]
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.56"
|
||||
miette-derive = { path = "miette-derive", version = "=6.0.1", optional = true }
|
||||
unicode-width = "0.1.9"
|
||||
unicode-width = "0.1.11"
|
||||
|
||||
owo-colors = { version = "3.4.0", optional = true }
|
||||
owo-colors = { version = "4.0.0", optional = true }
|
||||
textwrap = { version = "0.16.0", optional = true }
|
||||
supports-hyperlinks = { version = "3.0.0", optional = true }
|
||||
supports-color = { version = "3.0.0", optional = true }
|
||||
supports-unicode = { version = "3.0.0", optional = true }
|
||||
backtrace = { version = "0.3.61", optional = true }
|
||||
backtrace = { version = "0.3.69", optional = true }
|
||||
terminal_size = { version = "0.3.0", optional = true }
|
||||
backtrace-ext = { version = "0.2.1", optional = true }
|
||||
serde = { version = "1.0.162", features = ["derive"], optional = true }
|
||||
serde = { version = "1.0.196", features = ["derive"], optional = true }
|
||||
syntect = { version = "5.1.0", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
semver = "1.0.4"
|
||||
semver = "1.0.21"
|
||||
|
||||
# Eyre devdeps
|
||||
futures = { version = "0.3", default-features = false }
|
||||
indenter = "0.3.0"
|
||||
indenter = "0.3.3"
|
||||
rustversion = "1.0"
|
||||
trybuild = { version = "1.0.19", features = ["diff"] }
|
||||
trybuild = { version = "1.0.89", features = ["diff"] }
|
||||
syn = { version = "2.0", features = ["full"] }
|
||||
regex = "1.5"
|
||||
regex = "1.10"
|
||||
lazy_static = "1.4"
|
||||
|
||||
serde_json = "1.0.64"
|
||||
serde_json = "1.0.113"
|
||||
strip-ansi-escapes = "0.2.0"
|
||||
|
||||
[features]
|
||||
|
|
|
|||
|
|
@ -11,6 +11,6 @@ repository = "https://github.com/zkat/miette"
|
|||
proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
proc-macro2 = "1.0.60"
|
||||
proc-macro2 = "1.0.78"
|
||||
quote = "1.0"
|
||||
syn = "2.0.11"
|
||||
syn = "2.0.48"
|
||||
|
|
|
|||
Loading…
Reference in New Issue