From f43d44b350b3a8786e296494348767a82eac112c Mon Sep 17 00:00:00 2001 From: ysq Date: Sun, 20 Jul 2025 00:39:42 +0800 Subject: [PATCH] feat: bump to v0.1.1 --- Cargo.toml | 2 +- README.md | 11 ++++++++++- README_CN.md | 11 ++++++++++- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c6d4fc7..934a40a 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "solana-streamer-sdk" -version = "0.1.0" +version = "0.1.1" edition = "2021" authors = ["William ", "sgxiang ", "wei <1415121722@qq.com>"] repository = "https://github.com/0xfnzero/solana-streamer" diff --git a/README.md b/README.md index 7671249..043e83f 100755 --- a/README.md +++ b/README.md @@ -20,6 +20,8 @@ A lightweight Rust library for real-time event streaming from Solana DEX trading ## Installation +### Direct Clone + Clone this project to your project directory: ```bash @@ -31,7 +33,14 @@ Add the dependency to your `Cargo.toml`: ```toml # Add to your Cargo.toml -solana-streamer-sdk = { path = "./solana-streamer", version = "0.1.0" } +solana-streamer-sdk = { path = "./solana-streamer", version = "0.1.1" } +``` + +### Use crates.io + +```toml +# Add to your Cargo.toml +solana-streamer-sdk = "0.1.1" ``` ## Usage Examples diff --git a/README_CN.md b/README_CN.md index 42633b2..cb5bb3e 100644 --- a/README_CN.md +++ b/README_CN.md @@ -20,6 +20,8 @@ ## 安装 +### 直接克隆 + 将项目克隆到您的项目目录: ```bash @@ -31,7 +33,14 @@ git clone https://github.com/0xfnzero/solana-streamer ```toml # 添加到您的 Cargo.toml -solana-streamer-sdk = { path = "./solana-streamer", version = "0.1.0" } +solana-streamer-sdk = { path = "./solana-streamer", version = "0.1.1" } +``` + +### 使用 crates.io + +```toml +# 添加到您的 Cargo.toml +solana-streamer-sdk = "0.1.1" ``` ## 使用示例