quantities 0.15.3

Unit-safe computations with quantities.
Documentation
// ---------------------------------------------------------------------------
// Copyright:   (c) 2022 ff. Michael Amrhein (michael@adrhinum.de)
// License:     This program is part of a larger application. For license
//              details please read the file LICENSE.TXT provided together
//              with the application.
// ---------------------------------------------------------------------------
// $Source: tests/ui/more_than_one_ref_unit.rs $
// $Revision: 2022-01-04T18:23:00+01:00 $

use quantities::prelude::*;

/// Foo, a completely useless quantity
#[quantity]
#[ref_unit(A, "a", MEGA)]
#[ref_unit(B, "b")]
#[unit(C, "c", 0.01)]
struct Foo {}

fn main() {}