-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 849 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
[package]
name = "egglang"
version = "0.3.3"
edition = "2021"
description = "The Egg Programming Language From Eloquent JavaScript, but in Rust"
license = "MIT"
repository = "https://github.com/sokorototo/egglang"
authors = ["Newton Toto nyachiengatoto@gmail.com"]
documentation = "https://docs.rs/egglang"
readme = "README.md"
include = ["Cargo.toml", "Cargo.lock", "src/*"]
keywords = ["egg", "interpreter", "parser", "language", "scripting"]
categories = ["compilers", "parser-implementations", "no-std"]
[dependencies]
arcstr = { version = "1.2.0", default-features = false }
either = { version = "1.13.0", default-features = false }
logos = "0.14.2"
ordered-float = { version = "4.2.2", default-features = false }
thiserror-no-std = "2.0.2"
[features]
std = []
[[bin]]
name = "runner"
path = "scripts/runner.rs"
required-features = ["std"]