Skip to content

Commit

Permalink
Adds profiler
Browse files Browse the repository at this point in the history
  • Loading branch information
howardwu committed Oct 10, 2019
1 parent 74821c5 commit 15e5848
Show file tree
Hide file tree
Showing 5 changed files with 822 additions and 1 deletion.
18 changes: 18 additions & 0 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "GPL-3.0"
edition = "2018"

[workspace]
members = ["errors", "models", "utilities"]
members = ["errors", "models", "profiler", "utilities"]

[[bin]]
name = "snarkos"
Expand Down
18 changes: 18 additions & 0 deletions profiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "snarkos-profiler"
version = "0.8.0"
authors = ["Michael Beller", "Collin Chin", "Raymond Chu", "Matthew Green", "Ian Miers", "Howard Wu"]
description = "Profiler for a decentralized record system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
keywords = ["cryptography", "blockchain", "decentralized", "record", "zkSNARK"]
categories = ["cryptography"]
include = ["Cargo.toml", "src", "README.md", "LICENSE.md"]
license = "GPL-3.0"
edition = "2018"

[dependencies]
colored = { version = "1", optional = true }

[features]
print-trace = [ "colored" ]
Loading

0 comments on commit 15e5848

Please sign in to comment.