sgx_libc 1.0.9

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
10
load("@io_bazel_rules_rust//rust:rust.bzl", "rust_library")

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