forked from cross-rs/cross
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 834 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
[package]
authors = ["Jorge Aparicio <[email protected]>", "Markus Reiter <[email protected]>"]
build = "build.rs"
description = "Zero setup cross compilation and cross testing"
documentation = "https://github.com/cross-rs/cross"
keywords = ["cross", "compilation", "testing", "tool"]
license = "MIT OR Apache-2.0"
name = "cross"
repository = "https://github.com/cross-rs/cross"
version = "0.2.1"
edition = "2018"
[dependencies]
atty = "0.2"
error-chain = "0.12"
home = "0.5"
lazy_static = "1.0"
libc = "0.2.104"
rustc_version = "0.2"
toml = "0.5"
which = { version = "3.1.0", default_features = false }
shell-escape = "0.1.4"
serde_json = "1.0.48"
[target.'cfg(not(windows))'.dependencies]
nix = "0.22.1"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.7", features = ["winbase"] }
[profile.release]
lto = true