sgx_types 1.1.0

Rust SGX SDK provides the ability to write Intel SGX applications in Rust Programming Language.
Documentation
1
2
3
4
5
6
7
8
9
load("@io_bazel_rules_rust//rust:rust.bzl", "rust_library")

rust_library(
    name = "sgx_types",
    visibility = ["//visibility:public"],
    edition = "2018",
    srcs = glob(["src/*.rs"]),
    deps = [],
)