dignifiedquire / async-tar

A tar archive reading/writing library for async Rust.
Apache License 2.0
66 stars 48 forks source link

Fix windows compile error #35

Closed estk closed 2 weeks ago

estk commented 2 years ago

in entry.rs:588:

async_std::os::windows::fs::symlink_file(src, dst).await
// (Could not find `fs` in `windows`)
codecov-commenter commented 2 years ago

Codecov Report

Merging #35 (5e78ba4) into master (748fee5) will decrease coverage by 12.24%. The diff coverage is n/a.

@@             Coverage Diff             @@
##           master      #35       +/-   ##
===========================================
- Coverage   80.95%   68.71%   -12.25%     
===========================================
  Files          11       11               
  Lines        2694     3733     +1039     
===========================================
+ Hits         2181     2565      +384     
- Misses        513     1168      +655     
Impacted Files Coverage Δ
src/lib.rs 35.49% <0.00%> (-64.51%) :arrow_down:
src/archive.rs 71.07% <0.00%> (-6.58%) :arrow_down:
src/error.rs 35.29% <0.00%> (-4.71%) :arrow_down:
src/entry.rs 57.85% <0.00%> (-0.09%) :arrow_down:
tests/all.rs 99.57% <0.00%> (+<0.01%) :arrow_up:
src/header.rs 71.45% <0.00%> (+6.74%) :arrow_up:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 748fee5...5e78ba4. Read the comment docs.

dignifiedquire commented 2 weeks ago

fixed in https://github.com/dignifiedquire/async-tar/pull/50