Update the occlum.json to align with the gen_enclave_conf design. Below is the two updated structures: "metadata": { "product_id": 0, "version_number": 0, "debuggable": true }, "resource_limits": { "max_num_of_threads": 32, "kernel_space_heap_size": "32MB", "kernel_space_stack_size": "1MB", "user_space_size": "256MB" }
17 lines
430 B
TOML
17 lines
430 B
TOML
[package]
|
|
name = "gen_enclave_conf"
|
|
version = "0.1.0"
|
|
authors = ["zongmin.gu <zongmin.gzm@alibaba-inc.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = "2.33"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
log = "0.4"
|
|
env_logger = "0.7"
|
|
serde-xml-rs = "0.4"
|
|
regex = "1" |