Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
negi-grass committed Jan 23, 2023
1 parent be5a85b commit 86757b2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
4 changes: 2 additions & 2 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "crypto-botters"
version = "0.3.0"
version = "0.4.0"
authors = ["negi_grass"]
edition = "2021"
description = "A crate for interacting with various cryptocurrency exchanges."
Expand Down Expand Up @@ -30,7 +30,7 @@ generic-api-client = { version = "0.1", path = "generic-api-client" }
crypto-botters-api = { version = "0.1", path = "crypto-botters-api" }
crypto-botters-binance = { version = "0.3", path = "crypto-botters-binance", optional = true }
crypto-botters-bitflyer = { version = "0.3", path = "crypto-botters-bitflyer", optional = true }
crypto-botters-bybit = { version = "0.1", path = "crypto-botters-bybit", optional = true }
crypto-botters-bybit = { version = "0.2", path = "crypto-botters-bybit", optional = true }
crypto-botters-coincheck = { version = "0.1", path = "crypto-botters-coincheck", optional = true }

[dev-dependencies]
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,18 @@ The following APIs are currently supported.
- [USDC Contract Perpetual](https://bybit-exchange.github.io/docs/usdc/perpetual/)
([WebSocket](https://bybit-exchange.github.io/docs/usdc/perpetual/#t-websocket))
- [Tax](https://bybit-exchange.github.io/docs/tax/)
- [Coincheck](https://coincheck.com/ja/documents/exchange/api) ([Examples](https://github.com/negi-grass/crypto-botters/tree/main/examples/coincheck))
- [Public API](https://coincheck.com/ja/documents/exchange/api#public)
- [Private API](https://coincheck.com/ja/documents/exchange/api#private)
- [WebSoket API](https://coincheck.com/ja/documents/exchange/api#websocket)

## Usage
More than 20 examples can be found in the [examples directory](https://github.com/negi-grass/crypto-botters/tree/main/examples).

Cargo.toml:
```
[dependencies]
crypto-botters = { version = "0.3", features = ["binance", "bitflyer", "bybit"] }
crypto-botters = { version = "0.4", features = ["binance", "bitflyer", "bybit", "coincheck"] }
```
Enable the features for the exchanges that you use.

Expand Down Expand Up @@ -182,7 +186,10 @@ request a reconnection, or close the connection.
- [USDC Contract Perpetual](https://bybit-exchange.github.io/docs/usdc/perpetual/)
([WebSocket](https://bybit-exchange.github.io/docs/usdc/perpetual/#t-websocket))
- [Tax](https://bybit-exchange.github.io/docs/tax/)

- [Coincheck](https://coincheck.com/ja/documents/exchange/api) ([](https://github.com/negi-grass/crypto-botters/tree/main/examples/coincheck))
- [Public API](https://coincheck.com/ja/documents/exchange/api#public)
- [Private API](https://coincheck.com/ja/documents/exchange/api#private)
- [WebSoket API](https://coincheck.com/ja/documents/exchange/api#websocket)
## 使い方
[examples ディレクトリ](https://github.com/negi-grass/crypto-botters/tree/main/examples) にサンプルが20以上あります。

Expand Down
2 changes: 1 addition & 1 deletion crypto-botters-bybit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crypto-botters-bybit"
version = "0.1.0"
version = "0.2.0"
authors = ["negi_grass"]
edition = "2021"
description = "A crate for interacting with the bybit API."
Expand Down

0 comments on commit 86757b2

Please sign in to comment.