chore: init lang crate

This commit is contained in:
rvcas 2022-08-02 19:43:19 -04:00
parent db5695a1c4
commit e74eace15c
No known key found for this signature in database
GPG Key ID: C09B64E263F7D68C
4 changed files with 21 additions and 1 deletions

4
Cargo.lock generated
View File

@ -11,6 +11,10 @@ dependencies = [
"uplc", "uplc",
] ]
[[package]]
name = "aiken-lang"
version = "0.0.0"
[[package]] [[package]]
name = "anyhow" name = "anyhow"
version = "1.0.57" version = "1.0.57"

View File

@ -1,2 +1,2 @@
[workspace] [workspace]
members = ["crates/cli", "crates/flat", "crates/uplc"] members = ["crates/*"]

8
crates/lang/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "aiken-lang"
version = "0.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

8
crates/lang/src/lib.rs Normal file
View File

@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}