zanesterling / fatr

A FAT12 parsing and manipulation tool
MIT License
1 stars 0 forks source link

Doesn't work as a crate #1

Closed kallisti5 closed 7 years ago

kallisti5 commented 7 years ago

fatr seems like just what I was looking for in my ARM image preparation tool (https://github.com/kallisti5/rune-image)

Looks like the crate is non-functional however:

kallisti5@nyx rune :) $ cargo build
   Compiling rune v0.1.0 (file:///home/kallisti5/Code/rune)
error[E0463]: can't find crate for `fatr`
  --> src/main.rs:13:1
   |
13 | extern crate fatr;
   | ^^^^^^^^^^^^^^^^^^ can't find crate

error: aborting due to previous error(s)

error: Could not compile `rune`.

To learn more, run the command again with --verbose.
kallisti5@nyx rune :( $ cat Cargo.toml 
[package]
name = "rune"
version = "0.1.0"
authors = ["Alexander von Gluck IV <kallisti5@unixzen.com>"]

[dependencies]
fatr = "*"
mbr = "*"
getopts = "*"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
reqwest = "*"

I also don't see the license in the source repository anywhere, but https://crates.io/crates/fatr shows it as MIT?

kallisti5 commented 7 years ago

Works as a crate now :-) Thanks!