forked from stellar/soroban-example-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (54 loc) · 1.46 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
[workspace]
resolver = "2"
members = [
"contracts/crowdfund",
]
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[workspace.dependencies.soroban-env-common]
version = "0.0.12"
git = "https://github.com/stellar/rs-soroban-env"
rev = "65498c8"
[workspace.dependencies.soroban-env-guest]
version = "0.0.12"
git = "https://github.com/stellar/rs-soroban-env"
rev = "65498c8"
[workspace.dependencies.soroban-env-macros]
version = "0.0.12"
git = "https://github.com/stellar/rs-soroban-env"
rev = "65498c8"
[workspace.dependencies.soroban-env-host]
version = "0.0.12"
git = "https://github.com/stellar/rs-soroban-env"
rev = "65498c8"
[workspace.dependencies.soroban-native-sdk-macros]
version = "0.0.12"
git = "https://github.com/stellar/rs-soroban-env"
rev = "65498c8"
[workspace.dependencies.soroban-spec]
version = "0.4.3"
git = "https://github.com/stellar/rs-soroban-sdk"
rev = "51e5e6d"
[workspace.dependencies.soroban-sdk]
version = "0.4.3"
git = "https://github.com/stellar/rs-soroban-sdk"
rev = "51e5e6d"
[workspace.dependencies.soroban-sdk-macros]
version = "0.4.3"
git = "https://github.com/stellar/rs-soroban-sdk"
rev = "51e5e6d"
[workspace.dependencies.soroban-auth]
version = "0.4.3"
git = "https://github.com/stellar/rs-soroban-sdk"
rev = "51e5e6d"
[workspace.dependencies.stellar-xdr]
version = "0.0.12"
git = "https://github.com/stellar/rs-stellar-xdr"
rev = "154e07e"