-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Josiah Evans
committed
Dec 20, 2018
1 parent
f74c90a
commit 0dbcda4
Showing
10 changed files
with
188 additions
and
1,211 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,15 @@ | ||
[package] | ||
name = "starling" | ||
version = "1.0.3" | ||
version = "1.0.4" | ||
authors = ["Josiah Evans <koreanhalo@gmail.com>"] | ||
description = "This tree structure is a binary merkle tree with branch compression via split indexes." | ||
repository = "https://github.com/ChosunOne/merkle_bit" | ||
keywords = ["binary", "merkle", "tree", "patricia"] | ||
license = "MIT" | ||
readme = "README.md" | ||
|
||
[build-dependencies] | ||
protoc-rust-no-elision = "2.0.4" | ||
|
||
[dev-dependencies] | ||
protobuf-codegen-no-elision = "2.0.4" | ||
protoc = "2.0.4" | ||
blake2-rfc = "0.2.18" | ||
protobuf = "2.0.4" | ||
rand = "0.5.5" | ||
|
||
[dependencies] |
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 |
---|---|---|
@@ -1,19 +1,3 @@ | ||
extern crate protoc_rust_no_elision; | ||
|
||
fn main() { | ||
build_proto(); | ||
} | ||
|
||
fn build_proto() { | ||
println!("Building..."); | ||
protoc_rust_no_elision::run(protoc_rust_no_elision::Args { | ||
out_dir: "src/serialization", | ||
input: &[ | ||
"src/proto/state.proto", | ||
], | ||
includes: &["src/proto/"], | ||
customize: protoc_rust_no_elision::Customize { | ||
..Default::default() | ||
}, | ||
}).expect("protoc"); | ||
} |
This file was deleted.
Oops, something went wrong.
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,6 +1,5 @@ | ||
#[cfg(test)] extern crate blake2_rfc; | ||
#[cfg(test)] extern crate protobuf; | ||
#[cfg(test)] extern crate rand; | ||
|
||
pub mod common; | ||
#[cfg(test)] pub mod serialization; | ||
pub mod merkle_bit; | ||
pub mod traits; |
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.