Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: Make symbolic a workspace dep everywhere #1584

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading