-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 990 Bytes
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 990 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
31
32
33
34
35
36
37
38
39
[package]
name = "val"
version = "0.3.6"
authors = ["Liam <liam@scalzulli.com>"]
categories = ["science", "parser-implementations", "command-line-interface"]
description = "An arbitrary precision calculator language"
edition = "2024"
homepage = "https://github.com/terror/val"
keywords = ["productivity", "compilers"]
license = "CC0-1.0"
repository = "https://github.com/terror/val"
resolver = "2"
[workspace]
members = [".", "crates/*"]
[[bench]]
name = "main"
harness = false
[dependencies]
anyhow = "1.0.100"
ariadne = "0.5.1"
astro-float = { version = "0.9.5", default-features = false, features = ["std"] }
chumsky = "0.10.1"
clap = { version = "4.5.51", features = ["derive"] }
[target.'cfg(not(target_family = "wasm"))'.dependencies]
dirs = "6.0.0"
regex = "1.12.2"
rustyline = "15.0.0"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
executable-path = "1.0.0"
indoc = "2.0.7"
pretty_assertions = "1.4.1"
tempfile = "3.23.0"
unindent = "0.2.4"