-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
42 lines (38 loc) · 1.31 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
[package]
name = "ore-desktop-app"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[dependencies]
bevy = { version = "0.13.2", features = ["webp"] }
bevy-inspector-egui = "0.24.0"
# Using cocoon 0.3.1 because solana-sdk dependency curve25519-dalek has pinned zeroize version >=1 to <1.4, where cocoon 0.3.2 and after use zeroize >1.5
cocoon = "=0.3.1"
copypasta = "0.10.1"
serde = "1.0.199"
ore-utils = { path = "../regolith-labs/ore/utils"}
ore-api = { path = "../regolith-labs/ore/api"}
drillx = { path = "../regolith-labs/forks/drillx/drillx"}
solana-client = "1.18.12"
solana-sdk = "1.18.12"
spl-token = { version = "^4", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "^2.2", features = [ "no-entrypoint" ] }
toml = "0.8.12"
solana-program = "1.18.12"
solana-transaction-status = "1.18.12"
chrono = "0.4.38"
sysinfo = "0.30.11"
bincode = "1.3.3"
tiny-bip39 = "0.8.2"
open = "5.1.2"
async-compat = "0.2.3"
crossbeam-channel = "0.5.12"
solana-account-decoder = "1.18.13"
async-std = "1.12.0"
core_affinity = "0.8.1"