Skip to content

Commit 6df4459

Browse files
authored
Merge pull request #225 from input-output-hk/cet/resolver
Add a URI-like binary resolver, unit and integration tests
2 parents 9cd06a7 + cce62d4 commit 6df4459

File tree

6 files changed

+663
-1
lines changed

6 files changed

+663
-1
lines changed

Cargo.lock

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,21 @@ async-trait = "0.1"
1818
bech32 = "0.11"
1919
bigdecimal = "0.4.8"
2020
bitmask-enum = "2.2"
21+
blake2 = "0.10.6"
22+
bytes = { version = "1", features = ["serde"] }
2123
bs58 = "0.5"
2224
chrono = { workspace = true }
2325
crc = "3"
2426
gcd = "2.3"
2527
fraction = "0.15"
2628
hex = { workspace = true }
2729
lf-queue = "0.1.0"
30+
memmap2 = "0.9"
2831
num-rational = { version = "0.4.2", features = ["serde"] }
2932
serde = { workspace = true }
3033
serde_json = { workspace = true }
3134
serde_with = { workspace = true, features = ["base64"] }
35+
tempfile = "3"
3236
tokio = { workspace = true }
3337
tracing = { workspace = true }
3438
futures = "0.3.31"
@@ -38,8 +42,9 @@ imbl = { workspace = true }
3842
dashmap = { workspace = true }
3943
rayon = "1.11.0"
4044
cryptoxide = "0.5.1"
41-
blake2 = "0.10.6"
4245
sha2 = "0.10.8"
46+
caryatid_process.workspace = true
47+
config.workspace = true
4348

4449
[lib]
4550
crate-type = ["rlib"]

common/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ pub mod params;
1313
pub mod protocol_params;
1414
pub mod queries;
1515
pub mod rational_number;
16+
pub mod resolver;
1617
pub mod rest_helper;
1718
pub mod serialization;
1819
pub mod snapshot;

0 commit comments

Comments
 (0)