-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
46 lines (38 loc) · 1.08 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
[workspace]
resolver = "2"
members = [
"cmd/stellar-rpc/lib/preflight",
"cmd/stellar-rpc/lib/ffi",
"cmd/stellar-rpc/lib/xdr2json"
]
[workspace.package]
rust-version = "1.79.0"
[workspace.dependencies.soroban-env-host-prev]
package = "soroban-env-host"
version = "=21.2.1"
[workspace.dependencies.soroban-env-host-curr]
package = "soroban-env-host"
version = "=22.0.0"
#git = "https://github.com/stellar/rs-soroban-env"
#rev = "0497816694bef2b103494c8c61b7c8a06a72c7d3"
[workspace.dependencies.soroban-simulation-prev]
package = "soroban-simulation"
version = "=21.2.1"
[workspace.dependencies.soroban-simulation-curr]
package = "soroban-simulation"
version = "=22.0.0"
# git = "https://github.com/stellar/rs-soroban-env"
# rev = "0497816694bef2b103494c8c61b7c8a06a72c7d3"
[workspace.dependencies.stellar-xdr]
version = "=22.0.0"
features = [ "serde" ]
[workspace.dependencies]
base64 = "0.22.0"
sha2 = "0.10.7"
libc = "0.2.147"
anyhow = "1.0.75"
rand = { version = "0.8.5", features = [] }
serde_json = "1.0"
[profile.release-with-panic-unwind]
inherits = 'release'
panic = 'unwind'