Skip to content

Commit

Permalink
fix incorrect names
Browse files Browse the repository at this point in the history
  • Loading branch information
collinc97 committed Jan 30, 2023
1 parent ac5e3c8 commit aa5f0af
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ path = "cli/main.rs"
[features]
default = [ ]
account = [ "aleo-account" ]
aleo-wasm = [ "wasm" ]
wasm = [ "aleo-wasm" ]

[dependencies]
num-format = "0.4.4"
Expand All @@ -46,7 +46,7 @@ num-format = "0.4.4"
version = "0.3.3"
optional = true

[dependencies.wasm]
[dependencies.aleo-wasm]
path = "wasm"
version = "0.3.3"
optional = true
Expand Down
4 changes: 2 additions & 2 deletions cli/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ pub type Aleo = snarkvm::circuit::AleoV0;

#[cfg(feature = "account")]
pub use aleo_account as account;
#[cfg(feature = "aleo-wasm")]
pub use wasm;
#[cfg(feature = "wasm")]
pub use aleo_wasm as wasm;
2 changes: 1 addition & 1 deletion wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "wasm"
name = "aleo-wasm"
version = "0.3.3"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Aleo"
Expand Down

0 comments on commit aa5f0af

Please sign in to comment.