Updates Cargo.toml

This commit is contained in:
howardwu 2020-04-20 21:34:15 -07:00
parent db4cea8967
commit a42d9eeb10
3 changed files with 18 additions and 18 deletions

26
Cargo.lock generated
View File

@ -576,7 +576,19 @@ dependencies = [
]
[[package]]
name = "language"
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "lazycell"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f"
[[package]]
name = "leo"
version = "0.1.0"
dependencies = [
"from-pest",
@ -592,18 +604,6 @@ dependencies = [
"snarkos-models",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "lazycell"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f"
[[package]]
name = "libc"
version = "0.2.67"

View File

@ -1,15 +1,15 @@
[package]
name = "language"
name = "leo"
version = "0.1.0"
authors = ["howardwu <howardwu@berkeley.edu>"]
authors = ["The Aleo Team <hello@aleo.org>"]
edition = "2018"
[lib]
name = "language"
name = "leo"
path = "src/lib.rs"
[[bin]]
name = "snarkLang"
name = "leo"
path = "src/main.rs"
[dependencies]

View File

@ -1,4 +1,4 @@
use language::*;
use leo::*;
use from_pest::FromPest;
use std::{