Skip to content

Commit 94dc6b3

Browse files
committed
Version 0.3.0
1 parent cffdbf9 commit 94dc6b3

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/target
22
**/*.rs.bk
33
Cargo.lock
4+
lcov.info

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ description = "FFI bindings to ffms2"
66
repository = "https://github.com/rust-av/ffms2-rs"
77
edition = "2021"
88
license = "MIT"
9+
include = ["/src", "Cargo.toml", "LICENSE", "README.md"]
910

1011
[dependencies]
11-
ffms2-sys = { path = "./ffms2-sys" }
12+
ffms2-sys = "0.3.0"
1213
cfg-if = "1.0.4"
1314
paste = "1.0.15"
1415
ffmpeg-the-third = "4.0.1"
@@ -18,3 +19,6 @@ structopt = "0.3.26"
1819

1920
[workspace]
2021
members = ["ffms2-sys"]
22+
23+
[patch.crates-io]
24+
ffms2-sys = { path = "./ffms2-sys" }

Justfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
lcov:
2+
cargo llvm-cov --lcov --output-path=lcov.info --ignore-filename-regex tests\.rs
3+
genhtml lcov.info --dark-mode --flat --missed --output-directory target/coverage_html
4+
5+
precommit:
6+
cargo fmt
7+
cargo clippy
8+
just lcov

ffms2-sys/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ description = "FFI bindings to ffms2"
66
repository = "https://github.com/rust-av/ffms2-rs"
77
edition = "2021"
88
license = "MIT"
9+
include = ["/src", "/data", "build.rs", "Cargo.toml", "LICENSE", "README.md"]
910

1011
[features]
1112
static = []

0 commit comments

Comments
 (0)