Skip to content

Commit

Permalink
Use trustchain-ffi crate from #63
Browse files Browse the repository at this point in the history
  • Loading branch information
sgreenbury committed Mar 29, 2023
1 parent 85ae082 commit e914df2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
members = [
"trustchain-core",
"trustchain-ion",
"trustchain-ffi"
]
17 changes: 17 additions & 0 deletions trustchain-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "trustchain-ffi"
version = "0.1.0"
authors = ["Trustchain Devs"]
edition = "2021"

[lib]
crate-type = ["cdylib"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
trustchain-core = { path = "../trustchain-core" }
trustchain-ion = { path = "../trustchain-ion" }

serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
1 change: 1 addition & 0 deletions trustchain-ffi/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// Placeholder

0 comments on commit e914df2

Please sign in to comment.