forked from wasm-micro-runtime/sightglass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (42 loc) · 1.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
42
43
44
45
46
47
[package]
name = "sightglass"
version = "0.1.0"
authors = ["Frank Denis <[email protected]>"]
edition = "2018"
description = "A benchmark suite and tool to compare different implementations of the same primitives"
keywords = ["benchmark", "benchmarking", "performance"]
homepage = "https://github.com/fastly/sightglass"
repository = "https://github.com/fastly/sightglass"
license = "Apache-2.0 WITH LLVM-exception OR MIT"
[dependencies]
bencher = "0.1"
clap = "2"
goblin = "0.0"
libc = "0.2"
libloading = "0.5"
precision = "0.1.11"
printtable = "0.1"
serde = "1.0.118"
serde_derive = "1.0.118"
serde_json = "1.0.60"
thiserror = "1"
toml = "0.5"
[target.'cfg(any(target_os="windows",target_os="macos",target_os="linux"))'.dependencies]
core_affinity="0.5.9"
[target.'cfg(not(any(target_os="windows",target_os="macos",target_os="linux")))'.dependencies]
hwloc = "0.5"
[workspace]
members = [
"crates/analysis",
"crates/api",
"crates/artifact",
"crates/cli",
"crates/data",
"crates/recorder",
"webui/sg-history"
]
default-members = [
"crates/cli"
]
[dev-dependencies]
serde_json = "1.0.64"