-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (64 loc) · 1.79 KB
/
Cargo.toml
File metadata and controls
68 lines (64 loc) · 1.79 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[workspace]
members = [
# Libraries
"parser",
"eval",
"typing",
# CLI app
"cli",
# E2E tests
"e2e-tests/wasm",
"e2e-tests/no-std",
]
resolver = "3"
[workspace.package]
version = "0.4.0-beta.1"
authors = ["Alex Ostrovski <[email protected]>"]
edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
repository = "https://github.com/slowli/arithmetic-parser"
[workspace.dependencies]
# External dependencies
anyhow = { version = "1.0.102", default-features = false }
assert_matches = "1.5.0"
bitflags = "2.11.0"
clap = "4.5.60"
codespan = "0.13.1"
codespan-reporting = "0.13.1"
cortex-m = "0.7"
cortex-m-rt = "0.7"
cortex-m-semihosting = "0.5"
criterion = "0.8.2"
embedded-alloc = "0.7.0"
glass_pumpkin = "1.10.0"
hashbrown = "0.16"
hex = "0.4.2"
nom = { version = "8", default-features = false, features = ["alloc"] }
nom_locate = { version = "5", default-features = false, features = ["alloc"] }
num-bigint = "0.4.6"
num-complex = "0.4.6"
num-traits = { version = "0.2.19", default-features = false }
once_cell = { version = "1.20.2", default-features = false }
panic-halt = "1.0.0"
pulldown-cmark = "0.13.0"
rand = "0.10.0"
rand_chacha = { version = "0.10.0", default-features = false }
rustyline = "17.0.2"
sha2 = "0.10.9"
static_assertions = "1.1.0"
term-transcript = "0.4.0"
textwrap = "0.16.2"
typed-arena = "2.0.1"
unindent = "0.2.4"
version-sync = "0.9"
wasm-bindgen = "0.2.99"
# Workspace dependencies
arithmetic-parser = { version = "=0.4.0-beta.1", path = "parser", default-features = false }
arithmetic-eval = { version = "=0.4.0-beta.1", path = "eval", default-features = false }
arithmetic-typing = { version = "=0.4.0-beta.1", path = "typing" }
# Speed up big integer crates.
[profile.dev.package.num-bigint]
opt-level = 2
[profile.dev.package.glass_pumpkin]
opt-level = 2