feat: add kindc cli

This commit is contained in:
Gabrielle Guimarães de Oliveira 2023-04-14 16:37:20 -03:00
parent 3fc34b86b9
commit f07059229f
No known key found for this signature in database
GPG Key ID: 1EFDBA29D0C4037A
5 changed files with 29 additions and 3 deletions

9
Cargo.lock generated
View File

@ -8,9 +8,16 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "kind-cli"
version = "0.1.3"
dependencies = [
"kind-syntax",
]
[[package]]
name = "kind-syntax"
version = "0.1.0"
version = "0.1.3"
dependencies = [
"num-bigint",
"thin-vec",

View File

@ -1,5 +1,5 @@
[workspace]
members = ["crates/kind-syntax"]
members = ["crates/kind-cli", "crates/kind-syntax"]
# [profile.test.package.hvm]
# opt-level = 3

View File

@ -0,0 +1,16 @@
[package]
description = "A pure functional functional language that uses the HVM."
edition = "2021"
keywords = ["functional", "language", "type-theory", "proof-assistant"]
license = "MIT"
name = "kind-cli"
version = "0.1.3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "kindc"
path = "src/main.rs"
[dependencies]
kind-syntax = {path = "../kind-syntax", version = "0.1.3"}

View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

View File

@ -2,7 +2,7 @@
edition = "2021"
license = "MIT"
name = "kind-syntax"
version = "0.1.0"
version = "0.1.3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html