Skip to content

Commit 1370768

Browse files
authored
Merge pull request #1454 from Shourya742/2025-01-31-remove-serde-feature-from-roles
remove with_serde from roles
2 parents b413446 + 450204e commit 1370768

File tree

3 files changed

+2
-20
lines changed

3 files changed

+2
-20
lines changed

roles/Cargo.lock

+1-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

roles/roles-utils/network-helpers/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,11 @@ tokio = { version = "1", features = ["full"] }
2020
binary_sv2 = { path = "../../../protocols/v2/binary-sv2/binary-sv2", optional = true }
2121
codec_sv2 = { path = "../../../protocols/v2/codec-sv2", features=["noise_sv2"], optional = true }
2222
const_sv2 = {path = "../../../protocols/v2/const-sv2"}
23-
serde = { version = "1.0.89", features = ["derive"], default-features = false, optional = true }
2423
tracing = { version = "0.1" }
2524
futures = "0.3.28"
2625

2726
[features]
2827
default = ["async-channel", "binary_sv2", "codec_sv2"]
29-
with_serde = ["binary_sv2/with_serde", "serde", "codec_sv2/with_serde"]
3028
with_buffer_pool = ["codec_sv2/with_buffer_pool"]
3129

3230
[package.metadata.docs.rs]

roles/translator/Cargo.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "translator_sv2"
3-
version = "0.1.3"
3+
version = "1.0.0"
44
authors = ["The Stratum V2 Developers"]
55
edition = "2021"
66
description = "Server used to bridge SV1 miners to SV2 pools"
@@ -47,5 +47,3 @@ rand = "0.8.4"
4747
[dev-dependencies]
4848
sha2 = "0.10.6"
4949

50-
[features]
51-
with_serde = []

0 commit comments

Comments
 (0)