-
Notifications
You must be signed in to change notification settings - Fork 44
/
Cargo.toml
40 lines (34 loc) · 1.49 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "openlimits"
version = "0.3.1-alpha.0"
authors = ["steffel <[email protected]>", "Ethan Fast <[email protected]>", "Danilo Guanabara <[email protected]>"]
edition = "2018"
description = "A open source Rust high performance cryptocurrency trading API with support for multiple exchanges and language wrappers. Focused in safety, correctness and speed."
license = "BSD-2-Clause"
repository = "https://github.com/nash-io/openlimits"
keywords = ["cryptocurrency", "exchange", "openlimits", "api"]
[[example]]
name = "orderbook"
path = "examples/rust/orderbook.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
# bindings = ["ligen", "ligen-macro", "ligen-csharp"]
default = ["rust_gmp"]
rust_gmp = ["openlimits-nash/rust_gmp"]
num_bigint = ["openlimits-nash/num_bigint"]
[dependencies]
openlimits-binance = "0.3.0"
openlimits-exchange = "0.3.0"
openlimits-coinbase = "0.3.0"
openlimits-nash = "0.3.0"
# ligen-macro = { path = "../../sensorial/systems/ligen/ligen/macro", optional = true }
# ligen = { path = "../../sensorial/systems/ligen/ligen", optional = true }
# lazy_static = "1.4.0"
[dev-dependencies]
rust_decimal = "1.14.3"
tokio = { version = "1.0", features = ["full"] }
futures = "0.3"
dotenv = "0.15.0"
[build-dependencies]
# ligen = { path = "../../sensorial/systems/ligen/ligen", optional = true }
# ligen-csharp = { path = "../../sensorial/systems/ligen/generators/ligen-csharp", optional = true }