-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
40 lines (37 loc) · 1.01 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
# Copyright 2020 ETH Zurich and University of Bologna.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
[package]
name = "banshee"
version = "0.5.0"
authors = ["Florian Zaruba <[email protected]>", "Fabian Schuiki <[email protected]>"]
description = "Emulates a Snitch system using dynamic LLVM JIT binary translation."
edition = "2018"
build = "build/build.rs"
[dependencies]
anyhow = "1"
binread = "2.2.0"
bytebuffer = "0.2.1"
byteorder = "1.4.3"
clap = "2"
crossbeam-utils = "0.8"
csv = "1.0.0-beta.2"
elf = "0.0.10"
flexfloat = { path = "flexfloat" }
itertools = "0.9"
llvm-sys = "120"
log = { version = "0.4", features = ["release_max_level_info"] }
pest = "2.1.3"
pest_derive = "2.1.0"
ndarray = "0.13"
pretty_env_logger = "0.4"
regex = "~1.9.6"
rev_slice = "0.1.5"
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.63"
serde_yaml = "0.8"
termion = "2.0.3"
thiserror = "1.0.21"
to-binary = "0.4.0"
[build-dependencies]
cc = "1.0"