-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 881 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 881 Bytes
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
[package]
name = "quasar"
version = "0.1.0"
edition = "2018"
license = "MIT"
publish = false
[dependencies]
solana-program = "1.7.11"
spl-token = {version = "3.1.1", features = ["no-entrypoint"]}
spl-associated-token-account = "1.0.3"
thiserror = "1.0.24"
arrayref = "0.3.6"
fixed ={version = "=1.9.0", features = ["serde"]}
num_enum = "^0.5.1"
bytemuck = "^1.7.2"
mango = { git = "https://github.com/blockworks-foundation/mango-v3.git", features = ["no-entrypoint"] }
mango-macro = { git = "https://github.com/blockworks-foundation/mango-v3.git" }
mango-common = { git = "https://github.com/blockworks-foundation/mango-v3.git" }
[features]
no-entrypoint = []
test-bpf = []
devnet = []
[dev-dependencies]
assert_matches = "1.4.0"
solana-program-test = "=1.7.11"
solana-sdk = "=1.7.11"
solana-validator = "=1.7.11"
solana-logger = "1.7.11"
[lib]
crate-type = ["cdylib", "lib"]