forked from jinko-core/jinko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (34 loc) · 1 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
[package]
name = "jinko"
version = "0.3.0-jinx4"
authors = ["CohenArthur <[email protected]>", "Skallwar <[email protected]>", "SanderJSA <[email protected]"]
edition = "2021"
description = "jinko is a safe, small and fast programming language with Rust interoperability"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/cohenarthur/jinko"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3"
colored = "2.0"
nom = "7.0"
nom_locate = "4.0"
linefeed = { version = "0.6", optional = true }
downcast-rs = "1.2"
anyhow = "1.0"
libffi = { version = "2.0.0", optional = true }
libloading = { version = "0.7", optional = true }
lazy_static = "1.4"
[features]
default = ["repl", "ffi", "std"]
repl = ["linefeed"]
ffi = ["libloading", "libffi"]
std = []
[dev-dependencies]
libc = "0.2"
[[bin]]
name = "jinko"
path = "interpreter/jinko.rs"
required-features = ["std"]
[profile.release]
lto = true