Release streamer with parser SDK 0.5

This commit is contained in:
0xfnzero
2026-05-26 00:19:07 +08:00
parent 6149ae2987
commit 8972d83492
4 changed files with 24 additions and 15 deletions
+10 -6
View File
@@ -123,33 +123,37 @@ Add the dependency to your `Cargo.toml`:
```toml
# Add to your Cargo.toml
solana-streamer-sdk = { path = "./solana-streamer", version = "1.4.14" }
solana-streamer-sdk = { path = "./solana-streamer", version = "1.5.0" }
```
### Use crates.io
```toml
# Add to your Cargo.toml
solana-streamer-sdk = "1.4.14"
solana-streamer-sdk = "1.5.0"
```
Parser backend features:
```toml
# Default: sol-parser-sdk parse-borsh backend
solana-streamer-sdk = "1.4.14"
solana-streamer-sdk = "1.5.0"
# Zero-copy parser backend for latency-sensitive bots
solana-streamer-sdk = { version = "1.4.14", default-features = false, features = ["sdk-parse-zero-copy"] }
solana-streamer-sdk = { version = "1.5.0", default-features = false, features = ["sdk-parse-zero-copy"] }
```
If both `sdk-parse-borsh` and `sdk-parse-zero-copy` are enabled, `sol-parser-sdk 0.4.19+` uses the zero-copy backend.
If both `sdk-parse-borsh` and `sdk-parse-zero-copy` are enabled, `sol-parser-sdk 0.5.0+` uses the zero-copy backend.
## 🔄 Migration Guide
### Upgrading to v1.5.0
Version 1.5.0 uses `sol-parser-sdk 0.5.0`, wires Raydium CLMM account parsing through the SDK bridge, and reduces ordered-buffer allocation/move overhead in low-latency delivery paths. `sol-parser-sdk 0.4.19` and `solana-streamer-sdk 1.4.14` were superseded because adding public parser event variants belongs in the 0.5 line.
### Upgrading to v1.4.14
Version 1.4.14 uses `sol-parser-sdk 0.4.19`, wires Raydium CLMM account parsing through the SDK bridge, and reduces ordered-buffer allocation/move overhead in low-latency delivery paths.
Version 1.4.14 was superseded by v1.5.0.
### Upgrading to v1.4.13