-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 2.3 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
[package]
name = "lcp-cgen"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[dependencies]
ibc = { version = "0.29.0", default-features = false, features = ["std"] }
ibc-proto = { version = "0.26.0", default-features = false }
ibc-test-framework = { version = "0.22.0", default-features = false }
ibc-proto-relayer = { package = "ibc-proto", version = "0.24.1", default-features = false }
ibc-relayer = { version = "0.22.0", default-features = false }
ibc-relayer-types = "0.22.0"
tendermint-rpc = { version = "0.28", default-features = false }
tendermint-light-client-verifier = { version = "0.28", default-features = false }
clap = { version = "3.2", features = ["derive"] }
tempfile = "3"
anyhow = { version = "1.0.56" }
tokio = { version = "1.0" }
log = "0.4.8"
serde = { version = "1.0", default-features = false, features = ["alloc"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
base64 = { git = "https://github.com/marshallpierce/rust-base64", default-features = false, features = ["alloc"] }
lcp-types = { git = "https://github.com/datachainlab/lcp", rev = "2c441cc4617a80809fff0b737cf3382a94069e9a", features = ["ibc"] }
host = { git = "https://github.com/datachainlab/lcp", rev = "2c441cc4617a80809fff0b737cf3382a94069e9a" }
host-environment = { git = "https://github.com/datachainlab/lcp", rev = "2c441cc4617a80809fff0b737cf3382a94069e9a", default-features = false }
store = { git = "https://github.com/datachainlab/lcp", rev = "2c441cc4617a80809fff0b737cf3382a94069e9a", default-features = false }
commitments = { git = "https://github.com/datachainlab/lcp", rev = "2c441cc4617a80809fff0b737cf3382a94069e9a" }
crypto = { git = "https://github.com/datachainlab/lcp", rev = "2c441cc4617a80809fff0b737cf3382a94069e9a" }
keymanager = { git = "https://github.com/datachainlab/lcp", rev = "2c441cc4617a80809fff0b737cf3382a94069e9a" }
enclave-api = { git = "https://github.com/datachainlab/lcp", rev = "2c441cc4617a80809fff0b737cf3382a94069e9a", default-features = false }
ecall-commands = { git = "https://github.com/datachainlab/lcp", rev = "2c441cc4617a80809fff0b737cf3382a94069e9a" }
attestation-report = { git = "https://github.com/datachainlab/lcp", rev = "2c441cc4617a80809fff0b737cf3382a94069e9a" }
[features]
default = []
simulation = [
"enclave-api/sgx-sw",
"ecall-commands/sgx-sw"
]