Skip to content

Commit

Permalink
Add Rust bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
Danacus committed Oct 18, 2024
1 parent d25231f commit 02df48e
Show file tree
Hide file tree
Showing 20 changed files with 2,076 additions and 0 deletions.
1 change: 1 addition & 0 deletions bindings/rust/sgx-step-rs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target/
384 changes: 384 additions & 0 deletions bindings/rust/sgx-step-rs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions bindings/rust/sgx-step-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "sgx-step"
version = "0.1.0"
edition = "2021"

[features]
default = ["sgx"]
sgx = ["sgx-urts-sys"]

[dependencies]
sgx-step-sys = { path = "../sgx-step-sys" }
sgx-urts-sys = { path = "../sgx-urts-sys", optional = true }
Loading

0 comments on commit 02df48e

Please sign in to comment.