-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 900 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 900 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
35
36
[package]
name = "pumpfun_trade_with_safekey"
version = "0.1.0"
edition = "2021"
[dependencies]
sol-trade-sdk = { path = "../sol-trade-sdk" }
solana-sdk = "4"
# solana-message/solana-transaction 4.0 使用 wincode 0.4,与 solana-hash 4.3 的 wincode 0.5 冲突;4.1 已对齐
solana-message = "4.1"
solana-transaction = "4.1"
solana-commitment-config = { version = "3", features = ["serde"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
sol-safekey = { path = "../sol-safekey" }
rpassword = "7.0"
anyhow = "1"
dotenvy = "0.15"
openssl = { version = "0.10.73", features = ["vendored"] }
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 4
panic = "abort"
strip = true
incremental = false
[profile.release-fast]
inherits = "release"
opt-level = 2
lto = false
codegen-units = 16
incremental = true