Skip to content

Commit fb8e0c5

Browse files
committed
edits to put on crates.io.
1 parent ae03717 commit fb8e0c5

File tree

4 files changed

+13
-57
lines changed

4 files changed

+13
-57
lines changed

Cargo.toml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,15 @@
22
name = "fat32-raw"
33
version = "0.1.0"
44
edition = "2024"
5+
authors = ["DIMFLIX <dimflix.official@gmail.com>"]
6+
description = "Лёгкая и безопасная Rust-библиотека для работы с FAT32-разделами и образами"
7+
license = "GPL-3.0-or-later"
8+
repository = "https://github.com/meowrch/fat32-raw"
9+
readme = "README.md"
10+
keywords = ["fat32", "filesystem", "esp", "rust", "raw"]
11+
categories = ["filesystem", "low-level"]
12+
homepage = "https://github.com/meowrch/fat32-raw"
513

6-
[dependencies]
7-
fatfs = "0.3.6"
8-
fscommon = "0.1.1"
9-
14+
[lib]
15+
name = "fat32_raw"
16+
path = "src/lib.rs"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fn main() -> std::io::Result {
3434
params.root_cluster,
3535
)?;
3636

37-
let filename = "bt_keys.json";
37+
let filename = "file.json";
3838

3939
if let Some(content) = volume.read_file(filename)? {
4040
println!("Старое содержимое файла '{}':\n{}", filename, String::from_utf8_lossy(&content));

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub mod fat32;

src/main.rs

Lines changed: 0 additions & 52 deletions
This file was deleted.

0 commit comments

Comments
 (0)