-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
79 lines (70 loc) · 2.84 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "openbook"
version = "0.1.0"
edition = "2021"
description = "📖1️⃣2️⃣ A CLI, TUI and SDK to interact with OpenBook V1 and V2 markets on the Solana blockchain."
license = "MIT"
keywords = ["blockchain", "cli", "solana", "dex"]
categories = ["command-line-utilities", "web-programming", "science"]
repository = "https://github.com/gigadao/openbook"
documentation = "https://docs.rs/openbook"
authors = [
"GigaDAO Core Maintainers",
"Mahmoud Harmouch <[email protected]>",
]
exclude = ["tests", "examples"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# v1 deps
openbook_dex = { version = "0.5.6" , features = ["test", "client"], optional = true }
# common
anyhow = "1.0.80"
solana-sdk = "=1.17.34"
rand = "0.8.5"
solana-client = "=1.17.34"
solana-rpc-client-api = "=1.17.34"
borsh = "0.10.3"
serde_json = "1.0.114"
tokio = { version = "1.36.0", features = ["time"] }
spl-associated-token-account = "=2.3.0"
clap = { version = "4.5.1", features = ["derive"], optional = true }
solana-cli-output = { version = "=1.17.34" , optional = true }
solana-transaction-status = "=1.17.34"
backon = "0.4.3"
ratatui = { version = "0.26.2", features = ["crossterm"], optional = true }
tui-input = { version = "0.8.0", optional = true }
serde = { version = "1.0.200", features = ["derive"] }
crossterm = { version = "0.27.0", optional = true }
unicode-width = { version = "0.1.12", optional = true }
strum = { version = "0.26.2", optional = true }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["std"], optional = true }
# v2 deps
openbookdex-v2 = {version = "0.1.0", features = ["client"], optional = true }
reqwest = { version = "0.11.27", optional = true }
itertools = { version = "0.13.0", optional = true }
anchor-client = { version = "0.29.0", optional = true }
anchor-lang = { version = "0.29.0", optional = true }
anchor-spl = { version = "0.29.0", optional = true }
fixed = { version = "1.11.0", optional = true }
pyth-sdk-solana = { version = "0.10.1", optional = true }
solana-account-decoder = { version = "=1.17.34", optional = true }
async-once-cell = {version = "0.4.2", features = ["unpin"], optional = true}
async-trait = {version = "0.1.80", optional = true}
[features]
default = []
v1 = ["openbook_dex", ]
v2 = ["openbookdex-v2", "reqwest", "anchor-client", "anchor-lang", "anchor-spl", "fixed", "pyth-sdk-solana", "solana-account-decoder", "async-trait", "async-once-cell", "itertools"]
cli = ["clap", "solana-cli-output", "ratatui", "tui-input", "crossterm", "unicode-width", "strum", "tracing-subscriber"]
[dev-dependencies]
bump2version = "0.1.3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[profile.release]
codegen-units = 1
opt-level = "z"
lto = "thin"
strip = "symbols"
[badges]
maintenance = { status = "actively-developed" }