mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-11-10 06:34:18 +00:00
examples: Add missing entries to Cargo.toml
This commit is contained in:
parent
c2e47d9dcb
commit
4d1e7be87e
4 changed files with 18 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
|||
#![allow(missing_docs)]
|
||||
|
||||
use lofty::prelude::*;
|
||||
use lofty::probe::Probe;
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#![allow(missing_docs)]
|
||||
|
||||
use lofty::file::TaggedFileExt;
|
||||
use lofty::probe::Probe;
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#![allow(missing_docs)]
|
||||
|
||||
use lofty::config::WriteOptions;
|
||||
use lofty::prelude::*;
|
||||
use lofty::probe::Probe;
|
||||
|
|
|
@ -58,6 +58,18 @@ harness = false
|
|||
name = "custom_resolver"
|
||||
path = "../examples/custom_resolver/src/main.rs"
|
||||
|
||||
[[example]]
|
||||
name = "tag_reader"
|
||||
path = "../examples/tag_reader.rs"
|
||||
|
||||
[[example]]
|
||||
name = "tag_writer"
|
||||
path = "../examples/tag_writer.rs"
|
||||
|
||||
[[example]]
|
||||
name = "tag_stripper"
|
||||
path = "../examples/tag_stripper.rs"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
|
Loading…
Reference in a new issue