// This file is part of Guitar . // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, version 3. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // Copyright (C) 2022-2022 Fuwn // SPDX-License-Identifier: GPL-3.0-only #![deny( warnings, nonstandard_style, unused, future_incompatible, rust_2018_idioms, clippy::all, clippy::nursery, clippy::pedantic )] #![recursion_limit = "128"] #![doc = include_str!("../README.md")] // #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] pub mod convert; pub mod fretboard; pub mod note; pub mod notes; pub mod pitch; pub mod string; pub mod unit; pub mod utility; pub use fretboard::Fretboard; pub use note::Note; pub use notes::NOTES; pub use pitch::Pitch;