Remove separate macro crate

Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
Serial 2021-04-02 21:07:28 -04:00
parent ac0cbbc53b
commit 030ce9c822
5 changed files with 3 additions and 25 deletions

View file

@ -17,7 +17,6 @@ mp4ameta = {version = "0.9.1", optional = true}
id3 = {version = "0.6.2", optional = true}
mp3-duration = {version = "0.1.10", optional = true}
thiserror = "1.0.24"
audiotags-dev-macro = {path = "./audiotags-dev-macro", version = "0.1.4"}
[features]
default = ["tags", "duration"]

View file

@ -1,11 +0,0 @@
# Generated by Cargo
# will have compiled files and executables
/target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

View file

@ -1,12 +0,0 @@
[package]
name = "audiotags-dev-macro"
version = "0.1.4"
authors = ["Tianyi <ShiTianyi2001@outlook.com>"]
edition = "2018"
description = "macros used during the development of audiotags"
license = "MIT"
repository = "https://github.com/TianyiShi2001/audiotags"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View file

@ -40,7 +40,8 @@
clippy::module_name_repetitions
)]
pub(crate) use audiotags_dev_macro::*;
mod macros;
pub use macros::*;
pub mod anytag;
pub use anytag::*;
@ -58,6 +59,7 @@ pub mod types;
pub use types::*;
pub mod config;
pub use config::Config;
use std::convert::From;