Made quantities implement Debug

This commit is contained in:
Zachary Sunforge
2024-11-13 22:05:46 -08:00
parent fdeab4a111
commit 943c47e65b
2 changed files with 2 additions and 1 deletions

View File

@ -11,7 +11,7 @@ members = [
]
[workspace.package]
version = "0.3.12"
version = "0.3.13"
edition = "2021"
repository = "https://git.bfpower.io/BFPOWER/physical"
readme = "README.md"

View File

@ -103,6 +103,7 @@ pub fn quantity_type(input: TokenStream) -> TokenStream {
Clone,
PartialEq,
PartialOrd,
Debug,
derive_more::Add,
derive_more::AddAssign,
derive_more::Sub,