Skip to content

Commit e12e5b1

Browse files
h4x0rclaude
andcommitted
chore: prepare for crates.io publish
- Use cargo add in README install section - Add rust-version (MSRV 1.74), readme, and exclude fields to Cargo.toml - Exclude tests/data/ from published crate (keeps tarball at 25 KB) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ba05208 commit e12e5b1

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
name = "ewf"
33
version = "0.1.0"
44
edition = "2021"
5+
rust-version = "1.74"
56
description = "Pure Rust reader for Expert Witness Format (E01/EWF) forensic disk images"
67
license = "MIT"
78
repository = "https://github.com/SecurityRonin/ewf"
89
authors = ["Albert Hui"]
910
keywords = ["forensics", "ewf", "e01", "encase", "disk-image"]
1011
categories = ["parser-implementations", "filesystem"]
12+
readme = "README.md"
13+
exclude = ["tests/data/", "tarpaulin-report.json"]
1114

1215
[dependencies]
1316
flate2 = "1"

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ reader.seek(SeekFrom::Start(1_048_576))?;
2626

2727
## Install
2828

29-
```toml
30-
[dependencies]
31-
ewf = "0.1"
29+
```sh
30+
cargo add ewf
3231
```
3332

3433
## Features

0 commit comments

Comments
 (0)