-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 781 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 781 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
[package]
name = "flash-swap-amm"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "lib"]
[lints.rust]
unused_imports = "deny"
dead_code = "warn"
unused_variables = "warn"
deprecated = "warn"
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(target_os, values("solana"))',
] }
[dependencies]
solana-nostd-sha256 = "0.1.3"
pinocchio = { version = "^0.10.1", features = ["copy"] }
pinocchio-log = "^0.5.1"
pinocchio-system = "^0.5.0"
pinocchio-token = "0.5.0"
constant-product-curve = { path = "constant-product-curve" }
five8_const = "0.1.3"
five8 = "0.2.1"
solana-program-log = "1.1.0"
[dev-dependencies]
mollusk-svm = "0.10.3"
mollusk-svm-programs-token = "0.10.3"
solana-sdk = "^3.0.0"
spl-token = { version = "9.0.0", features = ["no-entrypoint"] }