-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (52 loc) · 1.56 KB
/
Cargo.toml
File metadata and controls
61 lines (52 loc) · 1.56 KB
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
[workspace]
members = ["api", "program", "client", "cli"]
resolver = "2"
[workspace.package]
version = "1.0.0"
edition = "2021"
license = "Apache-2.0"
homepage = "https://flipcash.com"
description = "USDF Swap Program - A Solana liquidity pool for stablecoin swaps between USDF"
repository = "https://github.com/code-payments/usdf-swap-program/"
readme = "./README.md"
keywords = ["solana", "crypto", "stablecoin", "swap"]
[workspace.dependencies]
usdf-swap-api = { version = "1.0.0", path = "./api" }
usdf-swap-client = { version = "1.0.0", path = "./client" }
anyhow = "1.0"
num_enum = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
solana-client = "=2.1"
solana-program = "=2.1"
solana-sdk = "=2.1"
solana-transaction-status = "=2.1"
solana-transaction-status-client-types = "=2.1"
solana-account-decoder = "=2.1"
spl-associated-token-account = { features = ["no-entrypoint"], version = "^6" }
spl-token-2022 = { features = ["no-entrypoint"], version = "7" }
spl-token = { features = ["no-entrypoint"], version = "^4" }
steel = { version="4.0.0", features = ["spl"] }
# client-specific
bincode = "1.3"
base64 = "0.13"
rand = "0.8"
# cli-specific
clap = { version = "4.5", features = ["derive"] }
colored = "3.0.0"
dialoguer = "0.11.0"
dirs = "5.0"
tokio = { version = "1.37", features = ["full"] }
chrono = "0.4"
indicatif = "0.17"
console = "0.15"
# program-specific
litesvm = "0.5.0"
bytemuck = "1.14.3"
bytemuck_derive = "1.7.0"
solana-security-txt = "1.1.2"
[patch.crates-io]
[profile.release]
overflow-checks = true
[profile.dev]
overflow-checks = true