Skip to content

Commit

Permalink
Remove unneeded deps (#1713)
Browse files Browse the repository at this point in the history
  • Loading branch information
rukai authored Jul 31, 2024
1 parent fe68350 commit 342e11e
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 20 deletions.
14 changes: 1 addition & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ bincode = "1.3.1"
futures = "0.3"
hex = "0.4.3"
hex-literal = "0.4.1"
rand = "0.8.4"
rand_distr = "0.4.1"
rand = { version = "0.8.4", default-features = false }
clap = { version = "4.0.4", features = ["cargo", "derive"] }
async-trait = "0.1.30"
typetag = "0.2.5"
Expand Down
1 change: 0 additions & 1 deletion shotover-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ hex-literal.workspace = true
cassandra-protocol.workspace = true
bytes.workspace = true
rand.workspace = true
rand_distr.workspace = true
async-trait.workspace = true
tracing-subscriber.workspace = true
tracing-appender.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion shotover-proxy/tests/redis_int_tests/basic_driver_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use fred::clients::RedisClient;
use fred::interfaces::ClientLike;
use futures::{Future, StreamExt};
use pretty_assertions::assert_eq;
use rand::distributions::Alphanumeric;
use rand::{thread_rng, Rng};
use rand_distr::Alphanumeric;
use redis::aio::Connection;
use redis::cluster::ClusterConnection;
use redis::{AsyncCommands, Commands, ErrorKind, RedisError, Value};
Expand Down
3 changes: 1 addition & 2 deletions shotover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ rand = { features = ["small_rng"], workspace = true }
lz4_flex = { version = "0.11.0", optional = true }
clap.workspace = true
itertools.workspace = true
rand_distr.workspace = true
bytes.workspace = true
futures.workspace = true
tokio = { version = "1.25.0", features = [
Expand Down Expand Up @@ -93,7 +92,7 @@ serde.workspace = true
serde_json = { workspace = true, optional = true }
serde_yaml.workspace = true
bincode = { workspace = true, optional = true }
num = { version = "0.4.0", features = ["serde"] }
num-bigint = { version = "0.4.0", features = ["serde"] }
uuid = { workspace = true }
bigdecimal = { version = "0.4.0", features = ["serde"] }
base64 = { version = "0.22.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion shotover/src/frame/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mod redis;

use bigdecimal::BigDecimal;
use bytes::Bytes;
use num::BigInt;
use num_bigint::BigInt;
use ordered_float::OrderedFloat;
use serde::{Deserialize, Serialize};
use std::collections::{BTreeMap, BTreeSet};
Expand Down

0 comments on commit 342e11e

Please sign in to comment.