forked from tokay-lang/tokay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (41 loc) · 1.2 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "tokay"
version = "0.6.7"
description = "Tokay is a programming language designed for ad-hoc parsing."
authors = [
"Jan Max Meyer <jmm@phorward.de>"
]
homepage = "https://tokay.dev/"
repository = "https://github.com/tokay-lang/tokay/"
license = "MIT"
edition = "2021"
categories = [
"parsing",
"compilers",
"command-line-utilities",
"development-tools"
]
keywords = [
"awk",
"dsl",
"packrat",
"parser",
"vm"
]
[features]
default = ["static_expression_evaluation"]
static_expression_evaluation = [] # Evaluates static expressions like 1+2+3 during compile-time to reduce resulting operations
[dependencies]
charclass = "0.2" # use crates.io-version
# charclass = { version = "0.2", path = "../charclass" } # use local version
clap = { version = "4.5", features = ["derive"] }
env_logger = "0.11"
indexmap = "2.6"
log = { version = "0.4", features = ["release_max_level_warn"] }
num = "0.4"
num-bigint = "0.4"
num-parse = "0.1" # use crates.io-version
# num-parse = { version = "0.1", path = "../num-parse" } # use local version
rustyline = "15.0"
tokay-macros = "0.5" # use crates.io-version
# tokay-macros = { version = "0.5", path = "macros" } # use local version