-
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 #192 from alan-turing-institute/174-update-deps-re…
…structure Remove unused deps, autoinherit and restructure (#174)
- Loading branch information
Showing
91 changed files
with
246 additions
and
251 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,22 @@ | ||
[package] | ||
name = "trustchain-api" | ||
version = "0.1.0" | ||
authors = ["Trustchain Devs"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
|
||
async-trait = { workspace = true } | ||
chrono = { workspace = true } | ||
did-ion = { workspace = true } | ||
futures = { workspace = true } | ||
hex = { workspace = true } | ||
ps_sig = { workspace = true } | ||
serde_json = { workspace = true } | ||
sha2 = { workspace = true } | ||
ssi = { workspace = true, features = ["http-did", "secp256k1", "rss"] } | ||
trustchain-core = { path = "../trustchain-core" } | ||
trustchain-ion = { path = "../trustchain-ion" } | ||
|
||
[dev-dependencies] | ||
tokio = { workspace = true, features = ["full"] } |
File renamed without changes.
File renamed without changes.
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,23 @@ | ||
[package] | ||
name = "trustchain-cli" | ||
version = "0.1.0" | ||
authors = ["Trustchain Devs"] | ||
edition = "2021" | ||
|
||
[[bin]] | ||
name = "trustchain-cli" | ||
path = "src/bin/main.rs" | ||
|
||
[dependencies] | ||
|
||
clap = { workspace = true, features = ["derive", "cargo"] } | ||
lazy_static = { workspace = true } | ||
serde = { workspace = true, features = ["derive"] } | ||
serde_json = { workspace = true } | ||
ssi = { workspace = true, features = ["http-did", "secp256k1", "rss"] } | ||
tokio = { workspace = true, features = ["full"] } | ||
toml = { workspace = true } | ||
trustchain-api = { path = "../trustchain-api" } | ||
trustchain-core = { path = "../trustchain-core" } | ||
trustchain-http = { path = "../trustchain-http" } | ||
trustchain-ion = { path = "../trustchain-ion" } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,21 @@ | ||
[package] | ||
name = "trustchain-core" | ||
version = "0.2.0" | ||
authors = ["Trustchain Devs"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
async-trait = { workspace = true } | ||
base64 = "0.13" | ||
did-method-key = { workspace = true } | ||
petgraph = { workspace = true } | ||
serde = { workspace = true, features = ["derive"] } | ||
serde_jcs = { workspace = true } | ||
serde_json = { workspace = true } | ||
sha2 = { workspace = true } | ||
ssi = { workspace = true, features = ["http-did", "secp256k1", "rss"] } | ||
tempfile = { workspace = true } | ||
thiserror = { workspace = true } | ||
|
||
[dev-dependencies] | ||
mockall = { workspace = true } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,28 @@ | ||
[package] | ||
name = "trustchain-ffi" | ||
version = "0.1.0" | ||
authors = ["Trustchain Devs"] | ||
edition = "2021" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "staticlib", "lib"] | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
|
||
anyhow = { workspace = true } | ||
chrono = { workspace = true } | ||
did-ion = { workspace = true } | ||
# Fixed to same version used to generate bridge: `[email protected]` | ||
flutter_rust_bridge = { workspace = true } | ||
lazy_static = { workspace = true } | ||
serde = { workspace = true, features = ["derive"] } | ||
serde_json = { workspace = true } | ||
ssi = { workspace = true, features = ["http-did", "secp256k1", "rss"] } | ||
thiserror = { workspace = true } | ||
tokio = { workspace = true, features = ["rt-multi-thread"] } | ||
toml = { workspace = true } | ||
trustchain-api = { path = "../trustchain-api" } | ||
trustchain-core = { path = "../trustchain-core" } | ||
trustchain-http = { path = "../trustchain-http" } | ||
trustchain-ion = { path = "../trustchain-ion" } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,47 @@ | ||
[package] | ||
name = "trustchain-http" | ||
version = "0.1.0" | ||
edition = "2021" | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[[bin]] | ||
name = "trustchain-http" | ||
path = "src/bin/main.rs" | ||
|
||
[dependencies] | ||
|
||
async-trait = { workspace = true } | ||
axum = { workspace = true } | ||
axum-server = { workspace = true, features = ["tls-rustls"] } | ||
base64 = "0.21.0" | ||
chrono = { workspace = true } | ||
did-ion = { workspace = true } | ||
hyper = { workspace = true } | ||
image = { workspace = true } | ||
is_empty = { workspace = true } | ||
josekit = { workspace = true } | ||
lazy_static = { workspace = true } | ||
log = { workspace = true } | ||
qrcode = { workspace = true } | ||
rand = { workspace = true } | ||
reqwest = { workspace = true, features = ["stream"] } | ||
serde = { workspace = true, features = ["derive"] } | ||
serde_json = { workspace = true } | ||
serde_with = { workspace = true } | ||
shellexpand = { workspace = true } | ||
ssi = { workspace = true, features = ["http-did", "secp256k1", "rss"] } | ||
thiserror = { workspace = true } | ||
tokio = { workspace = true, features = ["full"] } | ||
toml = { workspace = true } | ||
tower = { workspace = true } | ||
tracing = { workspace = true } | ||
tracing-subscriber = { workspace = true } | ||
trustchain-api = { path = "../trustchain-api" } | ||
trustchain-core = { path = "../trustchain-core" } | ||
trustchain-ion = { path = "../trustchain-ion" } | ||
|
||
[dev-dependencies] | ||
axum-test-helper = { workspace = true } | ||
itertools = { workspace = true } | ||
mockall = { workspace = true } | ||
tempfile = { workspace = true } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
"y": "z737jJY7kxW_lpE1eZur-9n9_HUEGFyBGsTdChzI4Kg", | ||
"d": "CfdUwQ-CcBQkWpIDPjhSJAq2SCg6hAGdcvLmCj0aA-c" | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -10,4 +10,4 @@ | |
"requester_org": "myTrustworthyEntity", | ||
"operator_name": "trustworthyOperator" | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -9,4 +9,4 @@ | |
"requester_org": "myTrustworthyEntity", | ||
"operator_name": "trustworthyOperator" | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,38 @@ | ||
[package] | ||
name = "trustchain-ion" | ||
version = "0.2.0" | ||
authors = ["Trustchain Devs"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
anyhow = { workspace = true } | ||
async-trait = { workspace = true } | ||
bip39 = { workspace = true } | ||
bitcoin = { workspace = true } | ||
bitcoincore-rpc = { workspace = true } | ||
chrono = { workspace = true } | ||
did-ion = { workspace = true } | ||
ed25519-dalek-bip32 = { workspace = true } | ||
flate2 = { workspace = true } | ||
futures = { workspace = true } | ||
hex = { workspace = true } | ||
ipfs-api-backend-hyper = { workspace = true, features = ["with-send-sync"] } | ||
ipfs-hasher = { workspace = true } | ||
k256 = { workspace = true } | ||
lazy_static = { workspace = true } | ||
mongodb = { workspace = true } | ||
reqwest = { workspace = true } | ||
secp256k1 = { workspace = true } | ||
serde = { workspace = true, features = ["derive"] } | ||
serde_json = { workspace = true } | ||
sha2 = { workspace = true } | ||
ssi = { workspace = true, features = ["http-did", "secp256k1", "rss"] } | ||
thiserror = { workspace = true } | ||
tokio = { workspace = true, features = ["full"] } | ||
toml = { workspace = true } | ||
trustchain-core = { path = "../trustchain-core" } | ||
|
||
[dev-dependencies] | ||
glob = { workspace = true } | ||
itertools = { workspace = true } | ||
mockall = { workspace = true } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.