-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
48 lines (40 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
# https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
# <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
# option. This file may not be copied, modified, or distributed
# except according to those terms.
[package]
name = "ext4-view"
version = "0.7.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/nicholasbishop/ext4-view-rs"
categories = ["filesystem", "embedded", "no-std"]
description = "No-std compatible Rust library for reading ext2/ext4 filesystems"
keywords = ["ext4", "filesystem", "no_std"]
rust-version = "1.81"
include = [
"src/*.rs",
"src/iters",
"LICENSE-APACHE",
"LICENSE-MIT",
]
[workspace]
members = ["xtask"]
[workspace.dependencies]
anyhow = { version = "1.0.0", features = ["backtrace"] }
[features]
std = []
[dependencies]
bitflags = "2.0.0"
crc = "3.0.0"
[dev-dependencies]
anyhow.workspace = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[example]]
name = "cat"
required-features = ["std"]