Rename directory types -> typed

This commit is contained in:
howardwu 2020-08-02 21:02:25 -07:00
parent c8b82f12a8
commit f4f9b30dd2
74 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ name = "leo"
path = "leo/main.rs"
[workspace]
members = [ "ast", "compiler", "gadgets", "input", "linter", "types" ]
members = [ "ast", "compiler", "gadgets", "input", "linter", "typed" ]
[dependencies]
leo-compiler = { path = "compiler", version = "0.1.0" }

View File

@ -8,7 +8,7 @@ edition = "2018"
leo-ast = { path = "../ast", version = "0.1.0" }
leo-gadgets = { path = "../gadgets", version = "0.1.0" }
leo-input = { path = "../input", version = "0.1.0" }
leo-typed = { path = "../types", version = "0.1.0" }
leo-typed = { path = "../typed", version = "0.1.0" }
snarkos-curves = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-curves", default-features = false }
snarkos-dpc = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-dpc", default-features = false }