-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #180 from alan-turing-institute/179-remove-rss-for…
…-publish-to-crates-io Make version with all dependencies available on crates.io (#179)
- Loading branch information
Showing
33 changed files
with
78 additions
and
423 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
//! Trustchain reference implementation. | ||
pub use trustchain_api as api; | ||
pub use trustchain_core as core; | ||
pub use trustchain_ffi as ffi; | ||
pub use trustchain_http as http; | ||
pub use trustchain_ion as ion; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ authors = ["Trustchain Devs"] | |
edition = "2021" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "staticlib"] | ||
crate-type = ["cdylib", "staticlib", "lib"] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
|
@@ -16,17 +16,13 @@ trustchain-api = { path = "../trustchain-api" } | |
|
||
anyhow = "1.0" | ||
chrono = "0.4.26" | ||
did-ion = { git = "https://github.com/alan-turing-institute/ssi.git", rev = "1aa3223a384ee71df1333bbce04af445e852eab5" } | ||
did-ion = { version = "0.2"} | ||
# Fixed to same version used to generate bridge: `[email protected]` | ||
flutter_rust_bridge = "=1.64.0" | ||
lazy_static = "1.4.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
ssi = { git = "https://github.com/alan-turing-institute/ssi.git", rev = "1aa3223a384ee71df1333bbce04af445e852eab5", features = [ | ||
"http-did", | ||
"secp256k1", | ||
"rss", | ||
] } | ||
ssi = { version = "0.7", features = ["http-did", "secp256k1"]} | ||
thiserror = "1.0" | ||
tokio = { version = "1.14.0", features = ["rt-multi-thread"] } | ||
toml = "0.7.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
//! FFI bindings for flutter/dart. | ||
pub mod config; | ||
// pub mod gui; | ||
pub mod mobile; | ||
|
Oops, something went wrong.