Skip to content
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.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ cargo add sof-gossip-tuning
Feature examples:

```toml
sof = { version = "0.11.0", features = ["gossip-bootstrap"] }
sof-tx = { version = "0.11.0", features = ["sof-adapters"] }
sof = { version = "0.12.0", features = ["gossip-bootstrap"] }
sof-tx = { version = "0.12.0", features = ["sof-adapters"] }
```

Kernel-bypass integrations:
Expand Down
2 changes: 1 addition & 1 deletion crates/sof-gossip-tuning/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sof-gossip-tuning"
version = "0.11.0"
version = "0.12.0"
edition.workspace = true
description = "Typed gossip and ingest tuning presets for SOF hosts"
license = "Apache-2.0 OR MIT"
Expand Down
6 changes: 3 additions & 3 deletions crates/sof-observer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sof"
version = "0.11.0"
version = "0.12.0"
edition.workspace = true
description = "Solana Observer Framework for low-latency shred ingestion and plugin-driven transaction observation"
license = "Apache-2.0 OR MIT"
Expand All @@ -24,8 +24,8 @@ kernel-bypass = ["dep:xdp"]

[dependencies]
agave-transaction-view = { version = "3.1.8", features = ["agave-unstable-api"] }
sof-gossip-tuning = { version = "0.11.0", path = "../sof-gossip-tuning" }
solana-gossip = { package = "sof-solana-gossip", version = "3.1.8-sof.4", optional = true, features = ["agave-unstable-api"] }
sof-gossip-tuning = { version = "0.12.0", path = "../sof-gossip-tuning" }
solana-gossip = { package = "sof-solana-gossip", version = "3.1.8-sof.5", optional = true, features = ["agave-unstable-api"] }
solana-entry = { version = "3.1.8", features = ["agave-unstable-api"] }
solana-hash = "3.1.0"
solana-keypair = "3.0.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/sof-observer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ cargo add sof
Optional gossip bootstrap support at compile time:

```toml
sof = { version = "0.11.0", features = ["gossip-bootstrap"] }
sof = { version = "0.12.0", features = ["gossip-bootstrap"] }
```

Optional external `kernel-bypass` ingress support:

```toml
sof = { version = "0.11.0", features = ["kernel-bypass"] }
sof = { version = "0.12.0", features = ["kernel-bypass"] }
```

The bundled `sof-solana-gossip` backend defaults to SOF's lightweight in-memory duplicate/conflict
Expand Down
Loading
Loading