-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (39 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (39 loc) · 1.02 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
[package]
name = "somni"
version = "0.3.1"
edition = "2024"
rust-version = "1.85.0"
description = "Somni scripting language and VM"
keywords = ["expression", "script", "language", "evaluator", "eval"]
categories = ["compilers"]
repository = "https://github.com/bugadani/somni"
license = "MIT OR Apache-2.0"
[[bench]]
name = "benchmark"
harness = false
[workspace.dependencies]
somni-parser = { version = "0.3.1", path = "somni-parser" }
somni-expr = { version = "0.3.1", path = "somni-expr" }
somni-template = { version = "0.3.1", path = "somni-template" }
indexmap = "2"
criterion = "0.6"
ansi-parser = "0.9"
pretty_assertions = "1.4"
[dependencies]
ansi-parser.workspace = true # FIXME this is needed by a hack to obtain nested errors
indexmap.workspace = true
somni-parser.workspace = true
somni-expr.workspace = true
[dev-dependencies]
criterion.workspace = true
pretty_assertions.workspace = true
[profile.release]
debug = true
[workspace]
members = [
".",
"xtask",
"somni-parser",
"somni-expr",
"somni-template",
]