-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (34 loc) · 940 Bytes
/
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
[package]
name = "burlap"
version = "1.2.6"
edition = "2021"
description = "A powerful and user-friendly Sack interpreter"
repository = "https://github.com/Bigjango13/Burlap"
[dependencies]
# For history file
home = {version = "0.5.4", optional = true}
# For values
impl_ops = "0.1.1"
# For speed
rustc-hash = "1.1.0"
# For REPL
rustyline = {version = "11.0.0", optional = true}
# For lexing
logos = "0.13.0"
# For C ffi
libc = {version = "0.2.142", optional = true}
libffi = {version = "3.2.0", optional = true}
# For wasm
wasm-bindgen = {version = "0.2", optional = true}
console_error_panic_hook = {version = "0.1.7", optional = true}
# For rand(min, max)
rand = "0.8.5"
[features]
default = ["fancyrepl"]
repl = ["rustyline", "home"]
fancyrepl = ["repl", "rustyline/custom-bindings", "rustyline/derive"]
cffi = ["libc", "libffi"]
wasm = ["wasm-bindgen", "console_error_panic_hook"]
[lib]
path = "src/main.rs"
crate-type = ["cdylib"]