mirror of
https://github.com/tealdeer-rs/tealdeer.git
synced 2026-08-23 16:44:18 +02:00
commit
9ffe459c1f
5 changed files with 820 additions and 724 deletions
|
|
@ -2,15 +2,15 @@ version: 2
|
|||
jobs:
|
||||
build:
|
||||
docker:
|
||||
- image: rust:1.31
|
||||
- image: rust:1.32
|
||||
steps:
|
||||
- checkout
|
||||
# Load cargo target from cache if possible.
|
||||
# Multiple caches are used to increase the chance of a cache hit.
|
||||
- restore_cache:
|
||||
keys:
|
||||
- v1-cargo-cache-{{ arch }}-{{ .Branch }}
|
||||
- v1-cargo-cache-{{ arch }}
|
||||
- v2-cargo-cache-{{ arch }}-{{ .Branch }}
|
||||
- v2-cargo-cache-{{ arch }}
|
||||
|
||||
# Show versions
|
||||
- run: rustc --version && cargo --version
|
||||
|
|
@ -23,12 +23,12 @@ jobs:
|
|||
- run: cargo test
|
||||
|
||||
- save_cache:
|
||||
key: v1-cargo-cache-{{ arch }}-{{ .Branch }}
|
||||
key: v2-cargo-cache-{{ arch }}-{{ .Branch }}
|
||||
paths:
|
||||
- target
|
||||
- /usr/local/cargo
|
||||
- save_cache:
|
||||
key: v1-cargo-cache-{{ arch }}
|
||||
key: v2-cargo-cache-{{ arch }}
|
||||
paths:
|
||||
- target
|
||||
- /usr/local/cargo
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
language: rust
|
||||
os: osx
|
||||
rust:
|
||||
- 1.31.0
|
||||
- 1.32.0
|
||||
- stable
|
||||
cache: cargo
|
||||
script: cargo test
|
||||
|
|
|
|||
1599
Cargo.lock
generated
1599
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -17,16 +17,17 @@ path = "src/main.rs"
|
|||
[dependencies]
|
||||
ansi_term = "0.11.0"
|
||||
app_dirs = "1.2.1"
|
||||
docopt = "0.8.1"
|
||||
env_logger = { version = "0.5", optional = true }
|
||||
docopt = "<1.1"
|
||||
env_logger = { version = "0.6", optional = true }
|
||||
flate2 = "1.0"
|
||||
log = "0.4"
|
||||
miniz_oxide_c_api = "<=0.2.2" # Dependency of flate2, used to keep compatibility with Rust 1.32
|
||||
pager = "0.15"
|
||||
reqwest = "0.9.5"
|
||||
serde = "1.0.21"
|
||||
serde_derive = "1.0.21"
|
||||
tar = "0.4.14"
|
||||
toml = "0.4.6"
|
||||
toml = "0.5.1"
|
||||
walkdir = "2.0.1"
|
||||
xdg = "2.1.0"
|
||||
|
||||
|
|
|
|||
|
|
@ -118,7 +118,7 @@ tealdeer has been added to a few package managers:
|
|||
|
||||
### From Source (any platform)
|
||||
|
||||
tealdeer requires at least Rust 1.31.
|
||||
tealdeer requires at least Rust 1.32.
|
||||
|
||||
Debug build with logging enabled:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue