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

collector: reduce size #1833

Merged
merged 3 commits into from
Mar 3, 2024
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
8 changes: 4 additions & 4 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 collector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ console = "0.15"
object = "0.32.1"
tabled = { version = "0.14.0" , features = ["ansi-str"]}
humansize = "2.1.3"
regex = "1.7.1"
regex = { version = "1.7.1", default-features = false, features = ["std", "perf"] }
analyzeme = { git = "https://github.com/rust-lang/measureme", branch = "stable" }

benchlib = { path = "benchlib" }
Expand Down
3 changes: 0 additions & 3 deletions collector/src/runtime/benchmark.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
use core::option::Option;
use core::option::Option::Some;
use core::result::Result::Ok;
use std::collections::HashMap;
use std::path::{Path, PathBuf};
use std::process::Command;
Expand Down
1 change: 0 additions & 1 deletion database/src/bin/sqlite-to-postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ use database::pool::{postgres, sqlite, ConnectionManager};
use futures_util::sink::SinkExt;
use hashbrown::HashMap;
use serde::{Serialize, Serializer};
use std::convert::{TryFrom, TryInto};
use std::io::Write;
use std::time::Instant;

Expand Down
1 change: 0 additions & 1 deletion database/src/pool/postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use chrono::{DateTime, TimeZone, Utc};
use hashbrown::HashMap;
use native_tls::{Certificate, TlsConnector};
use postgres_native_tls::MakeTlsConnector;
use std::convert::TryInto;
use std::str::FromStr;
use std::sync::Arc;
use std::time::Duration;
Expand Down
1 change: 0 additions & 1 deletion site/src/self_profile/codegen_schedule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ use analyzeme::ProfilingData;
use anyhow::Context;
use hashbrown::HashMap;
use serde::Serializer;
use std::convert::TryInto;
use std::time::Duration;

#[derive(serde::Deserialize, Debug)]
Expand Down
1 change: 0 additions & 1 deletion site/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ use hyper::StatusCode;
use log::{debug, error, info};
use parking_lot::{Mutex, RwLock};
use ring::hmac;
use rmp_serde;
use serde::de::DeserializeOwned;
use serde::Serialize;
use uuid::Uuid;
Expand Down
Loading