Skip to content

Commit

Permalink
Merge pull request #310 from mstange/update-deps-20240723
Browse files Browse the repository at this point in the history
Update dependencies.
  • Loading branch information
mstange authored Jul 24, 2024
2 parents effc751 + 311f9df commit 508b225
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 55 deletions.
93 changes: 46 additions & 47 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 samply-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ send_futures = ["samply-symbols/send_futures"]

[dependencies]
samply-symbols = { version = "0.23.0", path = "../samply-symbols" }
thiserror = "1.0.62"
thiserror = "1"
serde = "1.0.204"
serde_derive = "1.0.188"
serde_json = "1.0.120"
Expand Down
2 changes: 1 addition & 1 deletion samply-symbols/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ version = "0.36.1"
#pdb-addr2line = { path = "../../pdb-addr2line" }
pdb-addr2line = "0.11.0"
uuid = "1.10.0"
thiserror = "1.0.62"
thiserror = "1"
cpp_demangle = "0.4.0"
msvc-demangler = "0.10.1"
rustc-demangle = "0.1.24"
Expand Down
6 changes: 3 additions & 3 deletions samply/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ framehop = "0.12"
# linux-perf-data = { path = "../../linux-perf-data" }
linux-perf-data = "0.10.1"

tokio = { version = "1.38.0", features = ["rt", "rt-multi-thread", "macros"] }
tokio = { version = "1.38", features = ["rt", "rt-multi-thread", "macros"] }
tokio-util = "0.7.11"
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1.6", features = ["server", "http1", "tokio"] }
Expand All @@ -29,7 +29,7 @@ debugid = "0.8.0"
memchr = "2.7.2"
memmap2 = "0.9.4"
serde_json = "1.0.120"
thiserror = "1.0.62"
thiserror = "1"
tempfile = "3.10.1"
uuid = { version = "1.10.0", features = ["v4"] }
percent-encoding = "2.1.0"
Expand All @@ -44,7 +44,7 @@ wholesym = { version = "0.7.0", path = "../wholesym", features = ["api"]}
platform-dirs = "0.3"
once_cell = "1.17"
fxhash = "0.2.1"
mio = { version = "0.8.11", features = ["os-ext", "os-poll"] }
mio = { version = "1", features = ["os-ext", "os-poll"] }
ctrlc = "3.4.4"
log = "0.4.21"
env_logger = "0.11.3"
Expand Down
2 changes: 1 addition & 1 deletion wholesym-addr2line/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ dist = false

[dependencies]
wholesym = { version = "0.7.0", path = "../wholesym" }
tokio = { version = "1.38.0", features = ["rt", "rt-multi-thread", "macros"] }
tokio = { version = "1.38", features = ["rt", "rt-multi-thread", "macros"] }
clap = "4.5.9"

4 changes: 2 additions & 2 deletions wholesym/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ reqwest = { version = "0.12", default-features = false, features = [
] }
bytes = "1.6.1"
memmap2 = "0.9.4"
tokio = { version = "1.38.0", features = ["fs"] }
tokio = { version = "1.38", features = ["fs"] }
futures-util = "0.3.30"

# Needed for moria_mac_spotlight, to find dSYM files
Expand All @@ -45,4 +45,4 @@ core-foundation = "0.9.1"

[dev-dependencies]
futures = "0.3.5"
tokio = { version = "1.38.0", features = ["macros"] } # Feature "macros" for #[tokio::test]
tokio = { version = "1.38", features = ["macros"] } # Feature "macros" for #[tokio::test]

0 comments on commit 508b225

Please sign in to comment.