-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
95 lines (69 loc) · 1.58 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[package]
edition = "2018"
name = "serum_dex_0_4_0"
version = "0.4.0"
authors = [ "Serum Foundation <[email protected]>" ]
description = "Serum DEX"
license = "Apache-2.0"
repository = "https://github.com/project-serum/serum-dex"
[profile.release]
lto = true
[profile.test]
opt-level = 2
[lib]
crate-type = [ "cdylib", "lib" ]
[dependencies.arbitrary]
version = "0.4.6"
features = [ "derive" ]
optional = true
[dependencies.arrayref]
version = "0.3.6"
[dependencies.bincode]
version = "1.3.1"
[dependencies.bytemuck]
version = "1.4.0"
[dependencies.byteorder]
version = "1.3.4"
[dependencies.enumflags2]
version = "0.6.4"
[dependencies.field-offset]
version = "0.3.4"
[dependencies.itertools]
version = "0.9.0"
[dependencies.num-traits]
version = "0.2.12"
[dependencies.num_enum]
version = "0.5.0"
[dependencies.safe-transmute]
version = "0.11.0"
[dependencies.serde]
version = "1.0.114"
[dependencies.static_assertions]
version = "1.1.0"
[dependencies.thiserror]
version = "1.0.20"
[dependencies.without-alloc]
version = "0.2.1"
[dependencies.safecoin-program]
path = "../Safecoin/sdk/program"
[dependencies.safe-token]
features = [ "no-entrypoint" ]
path = "../safecoin-program-library/token/program"
[dev-dependencies.bumpalo]
version = "3.4.0"
features = [ "collections" ]
[dev-dependencies.hexdump]
version = "0.1.0"
[dev-dependencies.proptest]
version = "0.10.0"
[dev-dependencies.proptest-derive]
version = "0.2.0"
[dev-dependencies.rand]
version = "0.7.3"
[features]
client = [ ]
default = [ "program" ]
fuzz = [ "arbitrary" ]
no-entrypoint = [ ]
program = [ ]
test = [ ]