-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
47 lines (40 loc) · 964 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
41
42
43
44
45
46
47
[package]
authors = ["Sarus Contributors"]
description = "A jit engine using cranelift"
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"
name = "sarus"
repository = "https://github.com/DGriffin91/sarus/"
version = "0.0.0"
build = "build.rs"
[dependencies]
anyhow = "1.0"
cranelift = "0.82"
cranelift-jit = "0.82"
cranelift-module = "0.82"
cranelift-native = "0.82"
non-empty-vec = "0.2"
peg = "0.7"
thiserror = "1.0"
toposort-scc = "0.5"
toml = "0.5"
serde = {version = "1.0", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = {version = "0.2", features = ["fmt", "json"]}
tracing-core = "0.1"
tracing-appender = "0.1"
dunce = "1.0"
[dev-dependencies]
basic-audio-filters = {git = "https://github.com/DGriffin91/rust-basic-audio-filters"}
hound = "3.4"
skeptic = "0.13"
[build-dependencies]
skeptic = "0.13"
[profile.release]
debug = 1
[rust]
debuginfo-level = 1
[[example]]
name = "run_file"
[[example]]
name = "run_multiple_strings"