ionlang-cli 0.2.3

CLI runner and REPL for the Ion scripting language
[package]
name = "ionlang-cli"
version = "0.2.3"
edition = "2021"
description = "CLI runner and REPL for the Ion scripting language"
license = "MIT"
repository = "https://github.com/paiml/ionlang"
readme = "../README.md"
keywords = ["scripting", "repl", "ion"]
categories = ["command-line-utilities"]

[[bin]]
name = "ion"
path = "src/main.rs"

[features]
default = ["vm"]
vm = ["ion-core/vm"]

[dependencies]
ion-core = { version = "0.2.3", path = "../ion-core", default-features = true }