-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (29 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
37 lines (29 loc) · 1.16 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
[package]
name = "sapphire-paratime"
version = "1.2.0"
authors = ["Oasis Protocol Foundation <info@oasisprotocol.org>"]
edition = "2021"
license = "Apache-2.0"
[package.metadata.orc.release]
runtime-id = "000000000000000000000000000000000000000000000000f80306c9858e7279"
[package.metadata.orc.test]
runtime-id = "000000000000000000000000000000000000000000000000a6d1e3ebf60dff6c"
[package.metadata.fortanix-sgx]
heap-size = 536870912 # 512 MiB
stack-size = 2097152
threads = 26
debug = false
[dependencies]
keymanager = { git = "https://github.com/oasisprotocol/keymanager-paratime", tag = "v0.6.0" }
# SDK.
oasis-runtime-sdk = { git = "https://github.com/oasisprotocol/oasis-sdk", tag = "runtime-sdk/v0.16.2" }
module-evm = { git = "https://github.com/oasisprotocol/oasis-sdk", tag = "runtime-sdk/v0.16.2", package = "oasis-runtime-sdk-evm" }
module-rofl-market = { git = "https://github.com/oasisprotocol/oasis-sdk", tag = "runtime-sdk/v0.16.2", package = "oasis-runtime-sdk-rofl-market" }
# Third party.
once_cell = "1.8.0"
[profile.release]
codegen-units = 1
lto = "thin"
[features]
# Enables mock SGX in test builds.
debug-mock-sgx = ["oasis-runtime-sdk/debug-mock-sgx"]