Skip to content

Commit

Permalink
Xargo.toml, support other built-in targets, refactor
Browse files Browse the repository at this point in the history
closes #77
closes #98
  • Loading branch information
Jorge Aparicio committed Dec 28, 2016
1 parent 486524e commit fb36b3b
Show file tree
Hide file tree
Showing 24 changed files with 1,688 additions and 1,513 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Changed

- [breaking-change] By default, Xargo now only compiles the `core` crate. To
build more crates, use a `Xargo.toml` file

- [breaking-change] Xargo will now build a sysroot for any target that's not the
host.

- The verbose flag, `-v`, makes Xargo print all the shell commands it invokes
to stderr.

## [v0.2.3] - 2016-12-19

### Added
Expand Down
112 changes: 40 additions & 72 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 11 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,19 @@ keywords = ["cli", "cross", "compilation", "custom", "target"]
license = "MIT OR Apache-2.0"
name = "xargo"
repository = "https://github.com/japaric/xargo"
version = "0.2.3"
version = "0.3.0"

[dependencies]
daggy = "0.4.1"
error-chain = "0.5.0"
fs2 = "0.2.5"
libc = "0.2.16"
rustc-cfg = "0.2.0"
error-chain = "0.7.2"
fs2 = "0.4.0"
libc = "0.2.18"
rustc_version = "0.1.7"
serde_json = "0.8.3"
serde_json = "0.8.4"
tempdir = "0.3.5"
toml = "0.2.1"
walkdir = "0.1.8"
walkdir = "1.0.3"

[features]
# Causes Xargo to always build the sysroot using the dev profile
# This is mainly for shorter test times
dev = []
Loading

0 comments on commit fb36b3b

Please sign in to comment.