-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
72 lines (58 loc) · 1.23 KB
/
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
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
69
70
71
72
[package]
name = "hebi"
version = "0.4.0"
edition = "2021"
description = "A dynamic scripting language"
repository = "https://github.com/jprochazk/hebi"
authors = ["jprochazk"]
license = "MIT OR Apache-2.0"
readme = "README.md"
[features]
default = [
"nanbox",
"__check_recursion_limit",
"__assert_snapshots",
"__disable_verbose_logs",
]
# public features
nanbox = []
# private features
__check_recursion_limit = []
__assert_snapshots = []
__disable_verbose_logs = []
[dependencies]
beef = "0.5.2"
indexmap = "1.9.3"
logos = "0.13.0"
paste = "1.0.12"
stacker = "0.1.15"
futures-util = "0.3.28"
serde = { version = "1.0.163", optional = true }
pollster = { version = "0.3.0", features = ["macro"] }
[dev-dependencies]
indoc = "2.0.1"
insta = "1.29.0"
criterion = "0.4"
tokio = { version = "1.28.1", features = [
"macros",
"rt",
"time",
"rt-multi-thread",
] }
reqwest = "0.11.18"
tokio-util = { version = "0.7.8", features = ["rt"] }
flume = "0.10.14"
serde_json = "1.0.96"
[profile.dev.package]
insta = { opt-level = 3 }
indoc = { opt-level = 3 }
[profile.test.package]
insta = { opt-level = 3 }
indoc = { opt-level = 3 }
[workspace]
members = ["cli", "xtask"]
[[bench]]
name = "main"
harness = false
[profile.release]
lto = "fat"