Skip to content

Commit

Permalink
Feat: Integrate Hashchain into Refiner (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
birchmd authored Sep 18, 2023
1 parent 5c92fae commit 6adf729
Show file tree
Hide file tree
Showing 17 changed files with 6,406 additions and 506 deletions.
45 changes: 37 additions & 8 deletions Cargo.lock

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

15 changes: 8 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,18 @@ license = "CC0-1.0"
[workspace.dependencies]
actix = "0.13"
anyhow = "1"
aurora-engine = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.0.0", default-features = false, features = ["std", "tracing", "log", "impl-serde"] }
aurora-engine-transactions = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.0.0", default-features = false, features = ["std", "impl-serde"] }
aurora-engine-types = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.0.0", default-features = false, features = ["std", "impl-serde"] }
aurora-engine-sdk = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.0.0", default-features = false, features = ["std"] }
aurora-engine-modexp = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.0.0", default-features = false, features = ["std"] }
aurora-engine = { git = "https://github.com/aurora-is-near/aurora-engine.git", rev = "d573b68e6d8aa455979033fb8cd38f097a8036fa", default-features = false, features = ["std", "tracing", "log", "impl-serde"] }
aurora-engine-transactions = { git = "https://github.com/aurora-is-near/aurora-engine.git", rev = "d573b68e6d8aa455979033fb8cd38f097a8036fa", default-features = false, features = ["std", "impl-serde"] }
aurora-engine-types = { git = "https://github.com/aurora-is-near/aurora-engine.git", rev = "d573b68e6d8aa455979033fb8cd38f097a8036fa", default-features = false, features = ["std", "impl-serde"] }
aurora-engine-sdk = { git = "https://github.com/aurora-is-near/aurora-engine.git", rev = "d573b68e6d8aa455979033fb8cd38f097a8036fa", default-features = false, features = ["std"] }
aurora-engine-modexp = { git = "https://github.com/aurora-is-near/aurora-engine.git", rev = "d573b68e6d8aa455979033fb8cd38f097a8036fa", default-features = false, features = ["std"] }
aurora-engine-hashchain = { git = "https://github.com/aurora-is-near/aurora-engine.git", rev = "d573b68e6d8aa455979033fb8cd38f097a8036fa", default-features = false, features = ["std"] }
borsh = "0.10"
byteorder = "1"
clap = { version = "4", features = ["derive"] }
derive_builder = "0.12"
engine-standalone-storage = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.0.0", default-features = false }
engine-standalone-tracing = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.0.0", default-features = false, features = ["impl-serde"] }
engine-standalone-storage = { git = "https://github.com/aurora-is-near/aurora-engine.git", rev = "d573b68e6d8aa455979033fb8cd38f097a8036fa", default-features = false }
engine-standalone-tracing = { git = "https://github.com/aurora-is-near/aurora-engine.git", rev = "d573b68e6d8aa455979033fb8cd38f097a8036fa", default-features = false, features = ["impl-serde"] }
fixed-hash = "0.8"
futures = "0.3"
hex = "0.4"
Expand Down
1 change: 0 additions & 1 deletion engine/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ pub mod sync;
#[cfg(test)]
mod tests;
pub mod tracing;
pub mod types;

pub type SharedStorage = std::sync::Arc<tokio::sync::RwLock<Storage>>;

Expand Down
Loading

0 comments on commit 6adf729

Please sign in to comment.