Merge pull request #47 from AleoHQ/refactor/cleanup

Removes unused imports and reorders toml in leo-compiler
This commit is contained in:
Howard Wu 2020-06-07 20:14:24 -07:00 committed by GitHub
commit 86a5c6bdad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 18 deletions

3
Cargo.lock generated
View File

@ -516,12 +516,9 @@ version = "0.1.0"
dependencies = [
"from-pest",
"hex",
"lazy_static",
"leo-ast",
"log",
"pest",
"pest-ast",
"pest_derive",
"rand",
"sha2",
"snarkos-algorithms",

View File

@ -14,13 +14,10 @@ snarkos-gadgets = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", version = "
snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", version = "0.8.0" }
snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", version = "0.8.0" }
thiserror = { version = "1.0" }
from-pest = { version = "0.3.1" }
hex = { version = "0.4.2" }
lazy_static = { version = "1.3.0" }
log = { version = "0.4" }
pest = { version = "2.0" }
pest-ast = { version = "0.3.3" }
pest_derive = { version = "2.0" }
rand = { version = "0.7" }
sha2 = { version = "0.8" }
thiserror = { version = "1.0" }

View File

@ -2,17 +2,6 @@
#[macro_use]
extern crate thiserror;
extern crate log;
#[macro_use]
extern crate lazy_static;
extern crate from_pest;
extern crate pest;
extern crate pest_ast;
#[macro_use]
extern crate pest_derive;
pub mod compiler;