Skip to content

Commit

Permalink
deps: Make symbolic a workspace dep everywhere (#1584)
Browse files Browse the repository at this point in the history
  • Loading branch information
loewenheim authored Jan 9, 2025
1 parent 317ec35 commit 466641f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ cpp_demangle = { git = "https://github.com/getsentry/cpp_demangle", branch = "se


[workspace.dependencies]
symbolic = "12.13.1"
reqwest = "0.12.2"
symbolic = "12.13.1"
tokio = "1.36.0"
tokio-metrics = "0.3.1"
tokio-util = "0.7.10"
2 changes: 1 addition & 1 deletion crates/process-event/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ reqwest = { workspace = true, features = [
] }
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
symbolic-common = "12.13.1"
symbolic = { workspace = true }
2 changes: 1 addition & 1 deletion crates/process-event/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use ::reqwest::blocking::multipart;
use clap::Parser;
use reqwest::blocking as reqwest;
use serde_json::{to_string, Map, Value};
use symbolic_common::split_path;
use symbolic::common::split_path;

#[path = "../../symbolicator-service/src/utils/hex.rs"]
mod hex;
Expand Down
2 changes: 1 addition & 1 deletion crates/symbolicator-js/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ sentry = { version = "0.34.0", features = ["tracing"] }
serde = { version = "1.0.137", features = ["derive", "rc"] }
serde_json = "1.0.81"
sha2 = "0.10.6"
symbolic = { version = "12.12.0", features = ["common-serde", "sourcemapcache"] }
symbolic = { workspace = true, features = ["common-serde", "sourcemapcache"] }
symbolicator-service = { path = "../symbolicator-service" }
symbolicator-sources = { path = "../symbolicator-sources" }
tempfile = "3.2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/symbolicator-native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ once_cell = "1.18.0"
regex = "1.5.5"
sentry = { version = "0.34.0", features = ["tracing"] }
serde = { version = "1.0.137", features = ["derive", "rc"] }
symbolic = { version = "12.12.0", features = [
symbolic = { workspace = true, features = [
"cfi",
"common-serde",
"debuginfo",
Expand Down
2 changes: 1 addition & 1 deletion crates/symbolicator-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ serde = { version = "1.0.137", features = ["derive", "rc"] }
serde_json = "1.0.81"
serde_yaml = "0.9.14"
sha2 = "0.10.6"
symbolic = { version = "12.12.0", features = [
symbolic = { workspace = true, features = [
"cfi",
"common-serde",
"debuginfo",
Expand Down
2 changes: 1 addition & 1 deletion crates/symsorter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rayon = "1.5.2"
regex = "1.5.5"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
symbolic = { version = "12.12.0", features = ["debuginfo-serde"] }
symbolic = { workspace = true, features = ["debuginfo-serde"] }
walkdir = "2.3.1"
# NOTE: zip:0.6 by default depends on a version of zstd which conflicts with our other dependencies
zip = { version = "2.1.1", default-features = false, features = [
Expand Down

0 comments on commit 466641f

Please sign in to comment.