forked from japaric/xargo
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
49 lines (44 loc) · 1.28 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
48
49
[package]
authors = [
"Jorge Aparicio <[email protected]>",
"Philipp Oppermann <[email protected]>",
]
build = "build.rs"
categories = ["command-line-utilities", "development-tools", "embedded", "os"]
description = "Automatically cross-compiles the sysroot crates core, compiler_builtins, and alloc."
documentation = "https://docs.rs/crate/cargo-xbuild"
keywords = ["cli", "cross", "compilation", "std", "osdev"]
license = "MIT OR Apache-2.0"
name = "cargo-xbuild"
repository = "https://github.com/rust-osdev/cargo-xbuild"
version = "0.6.6"
edition = "2018"
[lib]
name = "xargo_lib"
[dependencies]
anyhow = "1.0"
cargo_metadata = { version = "0.11", default-features = false }
libc = "0.2.18"
rustc_version = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3"
toml = "0.5"
walkdir = "2.3"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = [
"winerror",
"fileapi",
"winbase",
"std",
] }
[features]
dev = []
# only usable in nightly version
backtrace = []
[package.metadata.release]
dev-version = false
pre-release-replacements = [
{ file = "CHANGELOG.md", search = "## Unreleased", replace = "## Unreleased\n\n## {{version}} – {{date}}", exactly = 1 },
]
pre-release-commit-message = "Release version {{version}}"