-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (38 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
45 lines (38 loc) · 1.06 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
[package]
name = "burlap"
version = "1.2.6"
edition = "2021"
description = "A powerful and user-friendly Sack interpreter"
repository = "https://github.com/Bigjango13/Burlap"
[dependencies]
# Required deps
# For lexing
logos = "0.13.0"
# For values
impl_ops = "0.1.1"
# For FxHashMap speed in the VM
rustc-hash = "1.1.0"
# For the sk_rand functi
rand = "0.8.5"
# For REPL
rustyline = {version = "11.0.0", optional = true}
# For REPL history file
home = {version = "0.5.4", optional = true}
# 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 debugging
ctrlc = {version = "3.4", optional = true}
[features]
default = ["fancyrepl", "debugger"]
repl = ["rustyline", "home"]
fancyrepl = ["repl", "rustyline/custom-bindings", "rustyline/derive"]
debugger = ["repl", "ctrlc"]
cffi = ["libc", "libffi"]
wasm = ["wasm-bindgen", "console_error_panic_hook"]
[lib]
path = "src/main.rs"
crate-type = ["cdylib"]