Skip to content

Commit

Permalink
address comments by Kirill Lykov
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpyattaev committed Dec 2, 2024
1 parent 56af8a2 commit 9e69118
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ members = [
"programs/zk-token-proof-tests",
"pubsub-client",
"quic-client",
"tls-utils",
"rayon-threadlimit",
"rbpf-cli",
"remote-wallet",
Expand Down Expand Up @@ -187,6 +186,7 @@ members = [
"test-validator",
"thin-client",
"timings",
"tls-utils",
"tokens",
"tps-client",
"tpu-client",
Expand Down Expand Up @@ -493,7 +493,6 @@ solana-metrics = { path = "metrics", version = "=2.2.0" }
solana-msg = { path = "sdk/msg", version = "=2.2.0" }
solana-native-token = { path = "sdk/native-token", version = "=2.2.0" }
solana-net-utils = { path = "net-utils", version = "=2.2.0" }
solana-tls-utils = { path = "tls-utils", version = "=2.2.0" }
solana-nohash-hasher = "0.2.1"
solana-nonce = { path = "sdk/nonce", version = "=2.2.0" }
solana-notifier = { path = "notifier", version = "=2.2.0" }
Expand Down Expand Up @@ -523,8 +522,8 @@ solana-rent = { path = "sdk/rent", version = "=2.2.0", default-features = false
solana-rent-debits = { path = "sdk/rent-debits", version = "=2.2.0" }
solana-reserved-account-keys = { path = "sdk/reserved-account-keys", version = "=2.2.0", default-features = false }
solana-reward-info = { path = "sdk/reward-info", version = "=2.2.0" }
solana-secp256r1-program = { path = "sdk/secp256r1-program", version = "=2.2.0", default-features = false }
solana-sanitize = { path = "sdk/sanitize", version = "=2.2.0" }
solana-secp256r1-program = { path = "sdk/secp256r1-program", version = "=2.2.0", default-features = false }
solana-seed-derivable = { path = "sdk/seed-derivable", version = "=2.2.0" }
solana-seed-phrase = { path = "sdk/seed-phrase", version = "=2.2.0" }
solana-serde = { path = "sdk/serde", version = "=2.2.0" }
Expand All @@ -537,6 +536,7 @@ solana-slot-hashes = { path = "sdk/slot-hashes", version = "=2.2.0" }
solana-slot-history = { path = "sdk/slot-history", version = "=2.2.0" }
solana-time-utils = { path = "sdk/time-utils", version = "=2.2.0" }
solana-timings = { path = "timings", version = "=2.2.0" }
solana-tls-utils = { path = "tls-utils", version = "=2.2.0" }
solana-unified-scheduler-logic = { path = "unified-scheduler-logic", version = "=2.2.0" }
solana-unified-scheduler-pool = { path = "unified-scheduler-pool", version = "=2.2.0" }
solana-rpc = { path = "rpc", version = "=2.2.0" }
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ solana-streamer = { workspace = true }
solana-svm = { workspace = true }
solana-svm-transaction = { workspace = true }
solana-timings = { workspace = true }
solana-tls-utils = { workspace = true }
solana-tpu-client = { workspace = true }
solana-transaction-status = { workspace = true }
solana-tls-utils = { workspace = true }
solana-turbine = { workspace = true }
solana-unified-scheduler-pool = { workspace = true }
solana-version = { workspace = true }
Expand Down
1 change: 0 additions & 1 deletion quic-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ solana-tls-utils = { workspace = true }
solana-transaction-error = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["full"] }

[dev-dependencies]
crossbeam-channel = { workspace = true }
solana-logger = { workspace = true }
Expand Down
7 changes: 3 additions & 4 deletions tls-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ license.workspace = true
edition.workspace = true

[dependencies]
solana-sdk = { workspace = true }

rustls = { workspace = true, features=["ring"] }
x509-parser = { workspace = true }
solana-keypair = { workspace = true }
solana-signer = { workspace = true }
solana-pubkey = { workspace = true }

solana-sdk = { workspace = true }
solana-signer = { workspace = true }
x509-parser = { workspace = true }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion tls-utils/README
Original file line number Diff line number Diff line change
@@ -1 +1 @@
A collection of utility functions and structures needed to bridge the conceptual gap between conventional TLS security model in protocols like QUIC and what Solana does
A collection of utility functions and structures needed to bridge the conceptual gap between conventional TLS security model in protocols like QUIC and what Solana does.
2 changes: 1 addition & 1 deletion tls-utils/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Collection of TLS related code fragments that end up popping up everywhere where quic is used.
//! Aggregated here to avoid bugs due to conflicting implementations of the same functionality
//! Aggregated here to avoid bugs due to conflicting implementations of the same functionality.

mod tls_certificates;
pub use tls_certificates::*;
Expand Down

0 comments on commit 9e69118

Please sign in to comment.