-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 864 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 864 Bytes
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
[package]
name = "aether-lang"
version = "0.1.4"
edition = "2021"
authors = ["Aether Contributors"]
description = "A general-purpose, dynamically typed programming language with automatic memory management"
readme = "README.md"
license = "MIT"
repository = "https://github.com/valarpirai/aether"
homepage = "https://valarpirai.github.io/aether/"
documentation = "https://valarpirai.github.io/aether/"
keywords = ["interpreter", "language", "scripting", "repl", "dynamic-typing"]
categories = ["development-tools"]
[dependencies]
rustyline = { version = "12.0", features = ["derive"] }
serde_json = "1"
base64 = "0.22"
reqwest = { version = "0.12", features = ["blocking", "json"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "interpreter_bench"
harness = false
[[bin]]
name = "aether"
path = "src/main.rs"