Skip to content

Commit

Permalink
solana: relax dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fanatid committed Oct 3, 2024
1 parent 90f5838 commit 4d4a812
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 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.

17 changes: 11 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "solana-geyser-sqs"
version = "0.3.2+solana.1.18.23"
version = "0.3.2"
edition = "2018"
publish = false

Expand Down Expand Up @@ -38,11 +38,11 @@ safe-transmute = "0.11.2"
serde = { version = "1.0.132", features = ["derive"] }
serde_json = "1.0.73"
serum_dex = "0.5.4"
solana-geyser-plugin-interface = "=1.18.23"
solana-logger = "=1.18.23"
solana-sdk = "=1.18.23"
solana-transaction-status = "=1.18.23"
spl-token = { version = "=4.0.0", features = ["no-entrypoint"] }
solana-geyser-plugin-interface = "1.18.23"
solana-logger = "1.18.23"
solana-sdk = "1.18.23"
solana-transaction-status = "1.18.23"
spl-token = { version = "4.0.0", features = ["no-entrypoint"] }
thiserror = "1.0.30"
tokio = { version = "1.32.0", features = ["rt-multi-thread", "time", "macros", "io-util"] }
zstd = "0.12.4"
Expand All @@ -53,6 +53,11 @@ cargo-lock = "9.0.0"
git-version = "0.3.5"
vergen = { version = "8.2.1", features = ["build", "rustc"] }

[lints.clippy]
clone_on_ref_ptr = "deny"
missing_const_for_fn = "deny"
trivially_copy_pass_by_ref = "deny"

[profile.release]
lto = true
codegen-units = 1
4 changes: 0 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
#![deny(clippy::clone_on_ref_ptr)]
#![deny(clippy::missing_const_for_fn)]
#![deny(clippy::trivially_copy_pass_by_ref)]

pub mod admin;
pub mod aws;
pub mod config;
Expand Down

0 comments on commit 4d4a812

Please sign in to comment.