-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 902 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "scurry"
version = "0.5.0"
authors = ["Diego Frias <styx5242@gmail.com>"]
license = "MIT"
description = "A component-based object-oriented language"
readme = "README.md"
homepage = "https://dzfrias.github.io/scurry-web"
repository = "https://github.com/dzfrias/scurry"
keywords = ["cli", "language", "compiler"]
categories = ["compilers"]
rust-version = "1.65.0"
edition = "2021"
exclude = ["/website", "/examples"]
[dependencies]
logos = "0.12.1"
thiserror = "1.0.37"
snailquote = "0.3.1"
clap = { version = "4.0.13", features = ["derive"], optional = true }
rustyline = { version = "10.0.0", optional = true }
rustyline-derive = { version = "0.7.0", optional = true }
[build-dependencies]
clap = { version = "4.0.13", features = ["derive"] }
clap_complete = { version = "4.0.6" }
clap_mangen = { version = "0.2.5" }
[features]
default = ["rustyline", "clap", "rustyline-derive"]