-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (35 loc) · 875 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
38
39
40
[package]
name = "rocklang"
version = "0.2.8"
edition = "2021"
authors = ["Jaroslaw Konik"]
license = "MIT"
description = "JIT-compiled programming language."
documentation = "https://jarkonik.github.io/rocklang/"
homepage = "https://jarkonik.github.io/rocklang/"
repository = "https://github.com/jarkonik/rocklang"
# See more keys and their definitions at
# https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"stdlib",
"test_utils"
]
[dependencies]
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.59"
assert-json-diff = "2.0.1"
stdlib = { path = "./stdlib" }
llvm-sys = "130"
backtrace = "0.3"
test_utils = { path = "./test_utils" }
libc = "0.2"
anyhow = "1.0"
[dev-dependencies]
assert_cmd = "0.10"
predicates = "2.1.0"
pretty_assertions = "1.2"
indoc = "1.0"
mockall = "0.11"
# [profile.release]
# debug = true