1
0
Fork 0
mirror of https://github.com/alfg/mp4-rust.git synced 2025-04-23 04:04:14 +00:00

Merge 'master'

This commit is contained in:
Byungwan Jun 2020-07-26 11:17:42 +09:00
commit 592232c994
3 changed files with 24 additions and 2 deletions

22
.github/workflows/rust.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

2
Cargo.lock generated
View file

@ -7,7 +7,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "mp4"
version = "0.4.1"
version = "0.4.2"
dependencies = [
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

View file

@ -1,6 +1,6 @@
[package]
name = "mp4"
version = "0.4.1"
version = "0.4.2"
authors = ["Alf <alf.g.jr@gmail.com>"]
edition = "2018"