-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (27 loc) · 732 Bytes
/
Cargo.toml
File metadata and controls
34 lines (27 loc) · 732 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
[package]
name = "rsbf"
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
debug = 1
[lib]
name = "rsbflib"
path = "src/lib/lib.rs"
[[bin]]
name = "rsbfc"
path = "src/compiler/main.rs"
[[bin]]
name = "rsbfi"
path = "src/interpreter/main.rs"
[features]
default = ["jit"]
jit = ["codegen"]
codegen = ["dep:cranelift", "dep:memmap2", "dep:target-lexicon"]
[dependencies]
clap = { version = "3.2.11", features = ["derive"] }
cranelift = { version = "0.100.0", optional = true }
memmap2 = { version = "0.9.0", optional = true }
nohash-hasher = "0.2.0"
subprocess = "0.2.9"
target-lexicon = { version = "0.12.11", optional = true }