forked from bytecodealliance/sightglass
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (28 loc) · 868 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
[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"
failure = "0.1"
goblin = "0.0"
libc = "0.2"
libloading = "0.5"
precision = "0.1.9"
printtable = "0.1"
serde = "1"
serde_derive = "1"
serde_json = "1"
toml = "0.5"
xfailure = "0.1"
[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"