-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1013 Bytes
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 1013 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
40
41
42
43
44
45
46
[package]
name = "rusteval"
description = "Make your application's structs and functions interactive"
version = "0.2.0"
edition = "2021"
repository = "https://github.com/dimpolo/rusteval/"
license = "MIT OR Apache-2.0"
categories = [
"command-line-interface",
"development-tools::debugging",
"hardware-support",
"no-std",
"parser-implementations"
]
keywords = [
"repl",
"eval",
"interactive"
]
[dependencies]
rusteval-derive = { path="rusteval-derive", version = "0.2", default-features = false}
auto_impl = "1.0.1"
inventory = { version = "0.3.2", optional = true }
lazy_static = { version = "1.4.0", optional = true }
[features]
default = ["std", "inventory", "lazy_static"]
std = ["rusteval-derive/std"]
[[example]]
name = "minimal"
path = "examples/minimal.rs"
[[example]]
name = "autocomplete"
path = "examples/autocomplete.rs"
[[example]]
name = "no_std"
path = "examples/no_std.rs"
[dev_dependencies]
rustyline = "10.0.0"
rustyline-derive = "0.7.0"
arrayvec = "0.7.2"