Skip to content
Draft
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
407 changes: 234 additions & 173 deletions Cargo.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ data-encoding = "2.3.3"
magic_string = "0.3.4"
chrono-tz = "0.8.4"
secrecy = "0.8.0"
sentry-core = "0.42.0"

[dev-dependencies]
assert_cmd = "2.0.11"
Expand Down
2 changes: 0 additions & 2 deletions src/commands/derive_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use clap::{command, ArgAction::SetTrue, Parser, Subcommand};

use super::dart_symbol_map::DartSymbolMapArgs;
use super::logs::LogsArgs;
use super::send_metric::SendMetricArgs;

#[derive(Parser)]
pub(super) struct SentryCLI {
Expand Down Expand Up @@ -35,6 +34,5 @@ pub(super) struct SentryCLI {
#[derive(Subcommand)]
pub(super) enum SentryCLICommand {
Logs(LogsArgs),
SendMetric(SendMetricArgs),
DartSymbolMap(DartSymbolMapArgs),
}
1 change: 0 additions & 1 deletion src/commands/logs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ pub(super) fn execute(_: &ArgMatches) -> Result<()> {
let SentryCLICommand::Logs(LogsArgs { subcommand }) = SentryCLI::parse().command else {
unreachable!("expected logs subcommand");
};

eprintln!("{BETA_WARNING}");

match subcommand {
Expand Down
2 changes: 0 additions & 2 deletions src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ mod releases;
mod repos;
mod send_envelope;
mod send_event;
mod send_metric;
mod sourcemaps;
#[cfg(not(feature = "managed"))]
mod uninstall;
Expand Down Expand Up @@ -70,7 +69,6 @@ macro_rules! each_subcommand {
$mac!(repos);
$mac!(send_event);
$mac!(send_envelope);
$mac!(send_metric);
$mac!(sourcemaps);
$mac!(dart_symbol_map);
#[cfg(not(feature = "managed"))]
Expand Down
67 changes: 0 additions & 67 deletions src/commands/send_metric/common_args.rs

This file was deleted.

15 changes: 0 additions & 15 deletions src/commands/send_metric/distribution.rs

This file was deleted.

15 changes: 0 additions & 15 deletions src/commands/send_metric/gauge.rs

This file was deleted.

26 changes: 0 additions & 26 deletions src/commands/send_metric/increment.rs

This file was deleted.

75 changes: 0 additions & 75 deletions src/commands/send_metric/mod.rs

This file was deleted.

29 changes: 0 additions & 29 deletions src/commands/send_metric/set.rs

This file was deleted.

29 changes: 0 additions & 29 deletions src/utils/metrics.rs

This file was deleted.

1 change: 0 additions & 1 deletion src/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ pub mod formatting;
pub mod fs;
pub mod http;
pub mod logging;
pub mod metrics;
pub mod mobile_app;
pub mod progress;
pub mod proguard;
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading