Bump workspace to owo-colors 4.0 (#167)

Requires adding a path dependency in color-eyre on color-spantrace so
that the versions agree. Fortunately we can do that now!
This commit is contained in:
Pavan Kumar Sunkara 2024-04-25 22:56:45 +01:00 committed by GitHub
commit aed87e4eb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 1124 additions and 5 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
/target
**/*.rs.bk
Cargo.lock
tags

1120
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -16,7 +16,7 @@ rust-version = "1.65.0"
[workspace.dependencies]
indenter = "0.3.0"
once_cell = "1.18.0"
owo-colors = "3.2.0"
owo-colors = "4.0"
[profile.dev.package.backtrace]
opt-level = 3

View File

@ -23,7 +23,7 @@ tracing-error = { version = "0.2.0", optional = true }
backtrace = { version = "0.3.48", features = ["gimli-symbolize"] }
indenter = { workspace = true }
owo-colors = { workspace = true }
color-spantrace = { version = "0.2", optional = true }
color-spantrace = { version = "0.2", path = "../color-spantrace", optional = true }
once_cell = { workspace = true }
url = { version = "2.1.1", optional = true }

View File

@ -14,7 +14,7 @@ rust-version = { workspace = true }
[dependencies]
tracing-error = "0.2.0"
tracing-core = "0.1.21"
owo-colors = "4.0"
owo-colors = { workspace = true }
once_cell = { workspace = true }
[dev-dependencies]

View File

@ -27,7 +27,7 @@ pyo3 = { version = "0.20", optional = true, default-features = false }
futures = { version = "0.3", default-features = false }
rustversion = "1.0"
thiserror = "1.0"
trybuild = { version = "=1.0.83", features = ["diff"] }
trybuild = { version = "=1.0.89", features = ["diff"] } # pinned due to MSRV
backtrace = "0.3.46"
anyhow = "1.0.28"
syn = { version = "2.0", features = ["full"] }