-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 1.15 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
[package]
name = "secure-code-execution-bin"
version = "0.1.0"
description.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
readme.workspace = true
categories.workspace = true
keywords.workspace = true
[dependencies]
secure-code-execution-lib.workspace = true
blueprint-sdk = { workspace = true, features = ["std"] }
tokio = { workspace = true, features = ["rt-multi-thread"] }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
tracing = { workspace = true }
tower.workspace = true
[build-dependencies]
secure-code-execution-lib.workspace = true
blueprint-sdk = { workspace = true, features = ["macros", "build"] }
# TODO: Not yet supported by blueprint-manager: https://github.com/tangle-network/blueprint/issues/730
#[[package.metadata.gadget.Native.sources]]
#owner = "tangle-network"
#repo = "secure-code-execution-blueprint"
#tag = "0.1.0"
#binaries = [
# { arch = "Amd64", os = "Linux", name = "amd64-linux-secure-code-execution-blueprint-gadget" },
# { arch = "Arm64", os = "Linux", name = "arm64-linux-secure-code-execution-blueprint-gadget" },
#]