Skip to content

Commit

Permalink
0.16.3: Update deps and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
DoumanAsh committed Aug 5, 2020
1 parent c537911 commit 30139c9
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 14 deletions.
6 changes: 0 additions & 6 deletions .rustfmt.toml

This file was deleted.

11 changes: 9 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,21 @@ matrix:
rust: stable
env: TARGET=x86_64-unknown-linux-gnu
cache: cargo
- os: linux
rust: stable
env: TARGET=x86_64-unknown-linux-musl
cache: cargo

sudo: false

install:
- cargo install cross || true

script:
- cargo test --features cli --target $TARGET
- cargo test --features cli

before_deploy:
- cargo build --release --features cli --target $TARGET
- cross build --release --features cli --target $TARGET
- zip "$PROJECT_NAME-$TRAVIS_TAG-$TARGET.zip" -j target/$TARGET/release/fie fie.toml

deploy:
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fie"
version = "0.16.2"
version = "0.16.3"
authors = ["Douman <[email protected]>"]
repository = "https://github.com/DoumanAsh/fie"
description = "Small and cute social media utility."
Expand Down Expand Up @@ -49,7 +49,7 @@ serde_derive = "1"
mime_guess = "2"

toml = { version = "0.5", optional = true }
dirs = { version = "2", optional = true }
dirs = { version = "3", optional = true }

futures-util = { version = "0.3" }

Expand Down
12 changes: 12 additions & 0 deletions Cross.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[build.env]
passthrough = [
"FIE_TWITTER_CONSUMER_KEY",
"FIE_TWITTER_CONSUMER_SECRET",
"RUSTFLAGS",
]

[target.x86_64-unknown-linux-musl]
image = "douman/cross-x86_64-unknown-linux-musl"

[target.armv7-unknown-linux-musleabihf]
image = "douman/cross-armv7-unknown-linux-musleabihf:latest"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Build status](https://ci.appveyor.com/api/projects/status/oc937oppd38x1y4y/branch/master?svg=true)](https://ci.appveyor.com/project/DoumanAsh/fie/branch/master)
[![Build Status](https://travis-ci.org/DoumanAsh/fie.svg?branch=master)](https://travis-ci.org/DoumanAsh/fie)
[![Crates.io](https://img.shields.io/crates/v/fie.svg)](https://crates.io/crates/fie)
[![Dependency status](https://deps.rs/crate/fie/0.16.2/status.svg)](https://deps.rs/crate/fie)
[![Dependency status](https://deps.rs/crate/fie/0.16.3/status.svg)](https://deps.rs/crate/fie)

Small and cute social media CLI.

Expand All @@ -13,9 +13,9 @@ Small and cute social media CLI.

### Download links

* Windows [64bit](https://github.com/DoumanAsh/fie/releases/download/0.16.1/fie-0.16.1-x86_64-pc-windows-msvc.zip)
* Linux [64bit](https://github.com/DoumanAsh/fie/releases/download/0.16.1/fie-0.16.1-x86_64-unknown-linux-gnu.zip)
* OSX [64bit](https://github.com/DoumanAsh/fie/releases/download/0.16.1/fie-0.16.1-x86_64-apple-darwin.zip)
* Windows [64bit](https://github.com/DoumanAsh/fie/releases/download/0.16.3/fie-0.16.3-x86_64-pc-windows-msvc.zip)
* Linux [64bit](https://github.com/DoumanAsh/fie/releases/download/0.16.3/fie-0.16.3-x86_64-unknown-linux-gnu.zip)
* OSX [64bit](https://github.com/DoumanAsh/fie/releases/download/0.16.3/fie-0.16.3-x86_64-apple-darwin.zip)

### Cargo

Expand Down

0 comments on commit 30139c9

Please sign in to comment.