serene-rust-implementation/bootstrap/Cargo.toml

19 lines
491 B
TOML
Raw Normal View History

2020-06-05 22:23:14 +01:00
[package]
name = "serene"
version = "0.1.0"
authors = ["Sameer Rahmani <lxsameer@gnu.org>"]
edition = "2018"
2020-09-09 21:53:25 +01:00
repository = "https://gitlab.com/serene-lang/serene"
homepage = "https://serene-lang.org"
2020-06-05 22:23:14 +01:00
2020-09-09 21:53:25 +01:00
license = "GPL-2.0"
license-file = "LICENSE"
2020-06-05 22:23:14 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-09-13 19:29:17 +01:00
# CLI library
clap = { version = "3.0.0-beta.1", features = ["yaml"] }
rustyline = "6.3.0"
2020-09-13 19:29:17 +01:00
2020-09-09 21:53:25 +01:00
[dev-dependencies]
rusty-hook = "^0.11.2"