[INFO] fetching crate rust_decimal_macros 1.38.0...
[INFO] testing rust_decimal_macros-1.38.0 against beta-2025-09-21 for beta-1.91-3
[INFO] extracting crate rust_decimal_macros 1.38.0 into /workspace/builds/worker-1-tc2/source
[INFO] started tweaking crates.io crate rust_decimal_macros 1.38.0
[INFO] removed 0 missing tests
[INFO] finished tweaking crates.io crate rust_decimal_macros 1.38.0
[INFO] tweaked toml for crates.io crate rust_decimal_macros 1.38.0 written to /workspace/builds/worker-1-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate rust_decimal_macros 1.38.0 on toolchain beta-2025-09-21
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-09-21" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate rust_decimal_macros 1.38.0 already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-09-21" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] 2a4f9181fab9603dd5d350ff75ceae34ee2169213fa1e8f358ad53679e1a41c5
[INFO] running `Command { std: "docker" "start" "-a" "2a4f9181fab9603dd5d350ff75ceae34ee2169213fa1e8f358ad53679e1a41c5", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "2a4f9181fab9603dd5d350ff75ceae34ee2169213fa1e8f358ad53679e1a41c5", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "2a4f9181fab9603dd5d350ff75ceae34ee2169213fa1e8f358ad53679e1a41c5", kill_on_drop: false }`
[INFO] [stdout] 2a4f9181fab9603dd5d350ff75ceae34ee2169213fa1e8f358ad53679e1a41c5
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 451a557e6c35f990c2f3c6d92b9c807427e233631ea6e47fd44b97efd123340b
[INFO] running `Command { std: "docker" "start" "-a" "451a557e6c35f990c2f3c6d92b9c807427e233631ea6e47fd44b97efd123340b", kill_on_drop: false }`
[INFO] [stderr]    Compiling proc-macro2 v1.0.93
[INFO] [stderr]    Compiling unicode-ident v1.0.17
[INFO] [stderr]    Compiling quote v1.0.38
[INFO] [stderr]    Compiling syn v2.0.98
[INFO] [stderr]    Compiling rust_decimal_macros v1.38.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/str.rs:79:33
[INFO] [stdout]    |
[INFO] [stdout] 79 | pub const fn parse_decimal(src: &str, exp: i32) -> ParseResult {
[INFO] [stdout]    |                                 ^^^^               ^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                                 |
[INFO] [stdout]    |                                 the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 79 | pub const fn parse_decimal(src: &str, exp: i32) -> ParseResult<'_> {
[INFO] [stdout]    |                                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/str.rs:80:62
[INFO] [stdout]    |
[INFO] [stdout] 80 |     const fn skip_us(radix: u32, is_positive: bool, mut src: &[u8], exp: i32) -> ParseResult {
[INFO] [stdout]    |                                                              ^^^^^               ^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                                                              |
[INFO] [stdout]    |                                                              the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 80 |     const fn skip_us(radix: u32, is_positive: bool, mut src: &[u8], exp: i32) -> ParseResult<'_> {
[INFO] [stdout]    |                                                                                             ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/str.rs:97:44
[INFO] [stdout]    |
[INFO] [stdout] 97 | pub const fn parse_decimal_with_radix(src: &str, exp: i32, radix: u32) -> ParseResult {
[INFO] [stdout]    |                                            ^^^^                           ^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                                            |
[INFO] [stdout]    |                                            the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 97 | pub const fn parse_decimal_with_radix(src: &str, exp: i32, radix: u32) -> ParseResult<'_> {
[INFO] [stdout]    |                                                                                      ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/str.rs:119:58
[INFO] [stdout]     |
[INFO] [stdout] 119 | const fn parse_bytes(radix: u32, is_positive: bool, src: &[u8], exp: i32) -> ParseResult {
[INFO] [stdout]     |                                                          ^^^^^               ^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                                          |
[INFO] [stdout]     |                                                          the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 119 | const fn parse_bytes(radix: u32, is_positive: bool, src: &[u8], exp: i32) -> ParseResult<'_> {
[INFO] [stdout]     |                                                                                         ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/str.rs:168:43
[INFO] [stdout]     |
[INFO] [stdout] 168 | const fn parse_10(is_positive: bool, src: &[u8], mut exp: i32) -> ParseResult {
[INFO] [stdout]     |                                           ^^^^^                   ^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                           |
[INFO] [stdout]     |                                           the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 168 | const fn parse_10(is_positive: bool, src: &[u8], mut exp: i32) -> ParseResult<'_> {
[INFO] [stdout]     |                                                                              ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 7.00s
[INFO] running `Command { std: "docker" "inspect" "451a557e6c35f990c2f3c6d92b9c807427e233631ea6e47fd44b97efd123340b", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "451a557e6c35f990c2f3c6d92b9c807427e233631ea6e47fd44b97efd123340b", kill_on_drop: false }`
[INFO] [stdout] 451a557e6c35f990c2f3c6d92b9c807427e233631ea6e47fd44b97efd123340b
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 716e5e19d5456a08c75a8b33c0c4fa1cd8ec81529e39e5deb6dff4901fda6a54
[INFO] running `Command { std: "docker" "start" "-a" "716e5e19d5456a08c75a8b33c0c4fa1cd8ec81529e39e5deb6dff4901fda6a54", kill_on_drop: false }`
[INFO] [stderr]    Compiling serde v1.0.218
[INFO] [stderr]    Compiling unicode-ident v1.0.17
[INFO] [stderr]    Compiling hashbrown v0.15.2
[INFO] [stderr]    Compiling target-triple v0.1.4
[INFO] [stderr]    Compiling serde_json v1.0.139
[INFO] [stderr]    Compiling winnow v0.7.3
[INFO] [stderr]    Compiling proc-macro2 v1.0.93
[INFO] [stderr]    Compiling memchr v2.7.4
[INFO] [stderr]    Compiling itoa v1.0.14
[INFO] [stderr]    Compiling ryu v1.0.19
[INFO] [stderr]    Compiling glob v0.3.2
[INFO] [stderr]    Compiling termcolor v1.4.1
[INFO] [stderr]    Compiling quote v1.0.38
[INFO] [stderr]    Compiling syn v2.0.98
[INFO] [stderr]    Compiling indexmap v2.7.1
[INFO] [stderr]    Compiling toml_datetime v0.6.8
[INFO] [stderr]    Compiling serde_spanned v0.6.8
[INFO] [stderr]    Compiling toml_edit v0.22.24
[INFO] [stderr]    Compiling serde_derive v1.0.218
[INFO] [stderr]    Compiling rust_decimal_macros v1.38.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/str.rs:79:33
[INFO] [stdout]    |
[INFO] [stdout] 79 | pub const fn parse_decimal(src: &str, exp: i32) -> ParseResult {
[INFO] [stdout]    |                                 ^^^^               ^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                                 |
[INFO] [stdout]    |                                 the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 79 | pub const fn parse_decimal(src: &str, exp: i32) -> ParseResult<'_> {
[INFO] [stdout]    |                                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/str.rs:80:62
[INFO] [stdout]    |
[INFO] [stdout] 80 |     const fn skip_us(radix: u32, is_positive: bool, mut src: &[u8], exp: i32) -> ParseResult {
[INFO] [stdout]    |                                                              ^^^^^               ^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                                                              |
[INFO] [stdout]    |                                                              the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 80 |     const fn skip_us(radix: u32, is_positive: bool, mut src: &[u8], exp: i32) -> ParseResult<'_> {
[INFO] [stdout]    |                                                                                             ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/str.rs:97:44
[INFO] [stdout]    |
[INFO] [stdout] 97 | pub const fn parse_decimal_with_radix(src: &str, exp: i32, radix: u32) -> ParseResult {
[INFO] [stdout]    |                                            ^^^^                           ^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                                            |
[INFO] [stdout]    |                                            the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 97 | pub const fn parse_decimal_with_radix(src: &str, exp: i32, radix: u32) -> ParseResult<'_> {
[INFO] [stdout]    |                                                                                      ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/str.rs:119:58
[INFO] [stdout]     |
[INFO] [stdout] 119 | const fn parse_bytes(radix: u32, is_positive: bool, src: &[u8], exp: i32) -> ParseResult {
[INFO] [stdout]     |                                                          ^^^^^               ^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                                          |
[INFO] [stdout]     |                                                          the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 119 | const fn parse_bytes(radix: u32, is_positive: bool, src: &[u8], exp: i32) -> ParseResult<'_> {
[INFO] [stdout]     |                                                                                         ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/str.rs:168:43
[INFO] [stdout]     |
[INFO] [stdout] 168 | const fn parse_10(is_positive: bool, src: &[u8], mut exp: i32) -> ParseResult {
[INFO] [stdout]     |                                           ^^^^^                   ^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                           |
[INFO] [stdout]     |                                           the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 168 | const fn parse_10(is_positive: bool, src: &[u8], mut exp: i32) -> ParseResult<'_> {
[INFO] [stdout]     |                                                                              ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling toml v0.8.20
[INFO] [stderr]    Compiling trybuild v1.0.104
[INFO] [stdout] error[E0432]: unresolved import `rust_decimal`
[INFO] [stdout]    --> src/str.rs:240:9
[INFO] [stdout]     |
[INFO] [stdout] 240 |     use rust_decimal::Decimal;
[INFO] [stdout]     |         ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] For more information about this error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `rust_decimal_macros` (lib test) due to 1 previous error
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:10:10
[INFO] [stdout]    |
[INFO] [stdout] 10 |         (dec!(0.00), "0.00"),
[INFO] [stdout]    |          ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:11:10
[INFO] [stdout]    |
[INFO] [stdout] 11 |         (dec!(1.00), "1.00"),
[INFO] [stdout]    |          ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:12:10
[INFO] [stdout]    |
[INFO] [stdout] 12 |         (dec!(1.23), "1.23"),
[INFO] [stdout]    |          ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:13:10
[INFO] [stdout]    |
[INFO] [stdout] 13 |         (dec!(-1.23), "-1.23"),
[INFO] [stdout]    |          ^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:14:10
[INFO] [stdout]    |
[INFO] [stdout] 14 |         (dec!(1.1234567890123456789012345678), "1.1234567890123456789012345678"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:15:10
[INFO] [stdout]    |
[INFO] [stdout] 15 |         (dec!(1_000_000), "1000000"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:16:10
[INFO] [stdout]    |
[INFO] [stdout] 16 |         (dec!(1), "1"),
[INFO] [stdout]    |          ^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:17:10
[INFO] [stdout]    |
[INFO] [stdout] 17 |         (dec!(-1), "-1"),
[INFO] [stdout]    |          ^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:18:10
[INFO] [stdout]    |
[INFO] [stdout] 18 |         (dec!(1_999), "1999"),
[INFO] [stdout]    |          ^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:19:10
[INFO] [stdout]    |
[INFO] [stdout] 19 |         (dec!(-1_999), "-1999"),
[INFO] [stdout]    |          ^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:20:10
[INFO] [stdout]    |
[INFO] [stdout] 20 |         (dec!(1.), "1"),
[INFO] [stdout]    |          ^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:21:10
[INFO] [stdout]    |
[INFO] [stdout] 21 |         (dec!(-1.111_009), "-1.111009"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:31:10
[INFO] [stdout]    |
[INFO] [stdout] 31 |         (dec!(0b1), "1"),
[INFO] [stdout]    |          ^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:32:10
[INFO] [stdout]    |
[INFO] [stdout] 32 |         (dec!(-0b1_1111), "-31"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:33:10
[INFO] [stdout]    |
[INFO] [stdout] 33 |         (dec!(0o1), "1"),
[INFO] [stdout]    |          ^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:34:10
[INFO] [stdout]    |
[INFO] [stdout] 34 |         (dec!(-0o1_777), "-1023"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:35:10
[INFO] [stdout]    |
[INFO] [stdout] 35 |         (dec!(0x1), "1"),
[INFO] [stdout]    |          ^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:36:10
[INFO] [stdout]    |
[INFO] [stdout] 36 |         (dec!(-0x1_Ffff), "-131071"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:46:10
[INFO] [stdout]    |
[INFO] [stdout] 46 |         (dec!(1.23e2), "123"),
[INFO] [stdout]    |          ^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:47:10
[INFO] [stdout]    |
[INFO] [stdout] 47 |         (dec!(1.23e+2), "123"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:48:10
[INFO] [stdout]    |
[INFO] [stdout] 48 |         (dec!(-1.23e-2), "-0.0123"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:49:10
[INFO] [stdout]    |
[INFO] [stdout] 49 |         (dec!(3.14e0), "3.14"),
[INFO] [stdout]    |          ^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:50:10
[INFO] [stdout]    |
[INFO] [stdout] 50 |         (dec!(12e3), "12000"),
[INFO] [stdout]    |          ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:51:10
[INFO] [stdout]    |
[INFO] [stdout] 51 |         (dec!(9.7e-7), "0.00000097"),
[INFO] [stdout]    |          ^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:52:10
[INFO] [stdout]    |
[INFO] [stdout] 52 |         (dec!(9e-7), "0.0000009"),
[INFO] [stdout]    |          ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:53:10
[INFO] [stdout]    |
[INFO] [stdout] 53 |         (dec!(1.2e10), "12000000000"),
[INFO] [stdout]    |          ^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:54:10
[INFO] [stdout]    |
[INFO] [stdout] 54 |         (dec!(1.2e+10), "12000000000"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:55:10
[INFO] [stdout]    |
[INFO] [stdout] 55 |         (dec!(12e10), "120000000000"),
[INFO] [stdout]    |          ^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:56:10
[INFO] [stdout]    |
[INFO] [stdout] 56 |         (dec!(9.7E-7), "0.00000097"),
[INFO] [stdout]    |          ^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:57:10
[INFO] [stdout]    |
[INFO] [stdout] 57 |         (dec!(1.2345E-24), "0.0000000000000000000000012345"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:58:10
[INFO] [stdout]    |
[INFO] [stdout] 58 |         (dec!(12345E-28), "0.0000000000000000000000012345"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:59:10
[INFO] [stdout]    |
[INFO] [stdout] 59 |         (dec!(1.2345E0), "1.2345"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:60:10
[INFO] [stdout]    |
[INFO] [stdout] 60 |         (dec!(1E28), "10000000000000000000000000000"),
[INFO] [stdout]    |          ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:61:10
[INFO] [stdout]    |
[INFO] [stdout] 61 |         (dec!(1e6), "1000000"),
[INFO] [stdout]    |          ^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:62:10
[INFO] [stdout]    |
[INFO] [stdout] 62 |         (dec!(-1.2e+6), "-1200000"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:63:10
[INFO] [stdout]    |
[INFO] [stdout] 63 |         (dec!(12e-6), "0.000012"),
[INFO] [stdout]    |          ^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:64:10
[INFO] [stdout]    |
[INFO] [stdout] 64 |         (dec!(-1.2e-6), "-0.0000012"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:74:10
[INFO] [stdout]    |
[INFO] [stdout] 74 |         (dec!(100, radix 2), "4"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:75:10
[INFO] [stdout]    |
[INFO] [stdout] 75 |         (dec!(radix 2, 100), "4"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:76:10
[INFO] [stdout]    |
[INFO] [stdout] 76 |         (dec!(radix 3, -1_222), "-53"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:77:10
[INFO] [stdout]    |
[INFO] [stdout] 77 |         (dec!(radix 36, z1), "1261"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:78:10
[INFO] [stdout]    |
[INFO] [stdout] 78 |         (dec!(radix 36, -1_xyz), "-90683"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:79:10
[INFO] [stdout]    |
[INFO] [stdout] 79 |         (dec!(radix 2, exp 5, 10), "200000"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:80:10
[INFO] [stdout]    |
[INFO] [stdout] 80 |         (dec!(radix 2, 10, exp 5), "200000"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:81:10
[INFO] [stdout]    |
[INFO] [stdout] 81 |         (dec!(exp -3, radix 8, -1_777), "-1.023"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]   --> tests/macro_tests.rs:82:10
[INFO] [stdout]    |
[INFO] [stdout] 82 |         (dec!(exp - 3, -1023), "-1.023"),
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    |
[INFO] [stdout]    = note: this error originates in the macro `dec` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:101:17
[INFO] [stdout]     |
[INFO] [stdout] 101 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 107 |     test!(1_000);
[INFO] [stdout]     |     ------------ in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:102:17
[INFO] [stdout]     |
[INFO] [stdout] 102 |                 rust_decimal::Decimal::from_str_exact(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 107 |     test!(1_000);
[INFO] [stdout]     |     ------------ in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:101:17
[INFO] [stdout]     |
[INFO] [stdout] 101 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 108 |     test!(-1_000);
[INFO] [stdout]     |     ------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:102:17
[INFO] [stdout]     |
[INFO] [stdout] 102 |                 rust_decimal::Decimal::from_str_exact(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 108 |     test!(-1_000);
[INFO] [stdout]     |     ------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:101:17
[INFO] [stdout]     |
[INFO] [stdout] 101 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 109 |     test!(0.000_001);
[INFO] [stdout]     |     ---------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:102:17
[INFO] [stdout]     |
[INFO] [stdout] 102 |                 rust_decimal::Decimal::from_str_exact(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 109 |     test!(0.000_001);
[INFO] [stdout]     |     ---------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:101:17
[INFO] [stdout]     |
[INFO] [stdout] 101 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 110 |     test!(-0.000_001);
[INFO] [stdout]     |     ----------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:102:17
[INFO] [stdout]     |
[INFO] [stdout] 102 |                 rust_decimal::Decimal::from_str_exact(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 110 |     test!(-0.000_001);
[INFO] [stdout]     |     ----------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:101:17
[INFO] [stdout]     |
[INFO] [stdout] 101 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 111 |     test!(79_228_162_514_264_337_593_543_950_335);
[INFO] [stdout]     |     --------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:102:17
[INFO] [stdout]     |
[INFO] [stdout] 102 |                 rust_decimal::Decimal::from_str_exact(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 111 |     test!(79_228_162_514_264_337_593_543_950_335);
[INFO] [stdout]     |     --------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:101:17
[INFO] [stdout]     |
[INFO] [stdout] 101 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 112 |     test!(-79_228_162_514_264_337_593_543_950_335);
[INFO] [stdout]     |     ---------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:102:17
[INFO] [stdout]     |
[INFO] [stdout] 102 |                 rust_decimal::Decimal::from_str_exact(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 112 |     test!(-79_228_162_514_264_337_593_543_950_335);
[INFO] [stdout]     |     ---------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:101:17
[INFO] [stdout]     |
[INFO] [stdout] 101 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 113 |     test!(79.228_162_514_264_337_593_543_950_335);
[INFO] [stdout]     |     --------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:102:17
[INFO] [stdout]     |
[INFO] [stdout] 102 |                 rust_decimal::Decimal::from_str_exact(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 113 |     test!(79.228_162_514_264_337_593_543_950_335);
[INFO] [stdout]     |     --------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:101:17
[INFO] [stdout]     |
[INFO] [stdout] 101 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 114 |     test!(-79.228_162_514_264_337_593_543_950_335);
[INFO] [stdout]     |     ---------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:102:17
[INFO] [stdout]     |
[INFO] [stdout] 102 |                 rust_decimal::Decimal::from_str_exact(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 114 |     test!(-79.228_162_514_264_337_593_543_950_335);
[INFO] [stdout]     |     ---------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:101:17
[INFO] [stdout]     |
[INFO] [stdout] 101 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 115 |     test!(7.922_816_251_426_433_759_354_395_033_5);
[INFO] [stdout]     |     ---------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:102:17
[INFO] [stdout]     |
[INFO] [stdout] 102 |                 rust_decimal::Decimal::from_str_exact(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 115 |     test!(7.922_816_251_426_433_759_354_395_033_5);
[INFO] [stdout]     |     ---------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:101:17
[INFO] [stdout]     |
[INFO] [stdout] 101 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 116 |     test!(-7.922_816_251_426_433_759_354_395_033_5);
[INFO] [stdout]     |     ----------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:102:17
[INFO] [stdout]     |
[INFO] [stdout] 102 |                 rust_decimal::Decimal::from_str_exact(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 116 |     test!(-7.922_816_251_426_433_759_354_395_033_5);
[INFO] [stdout]     |     ----------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 131 |     test!(1e1);
[INFO] [stdout]     |     ---------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 131 |     test!(1e1);
[INFO] [stdout]     |     ---------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 132 |     test!(-1e1);
[INFO] [stdout]     |     ----------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 132 |     test!(-1e1);
[INFO] [stdout]     |     ----------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 133 |     test!(1e+1);
[INFO] [stdout]     |     ----------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 133 |     test!(1e+1);
[INFO] [stdout]     |     ----------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 134 |     test!(-1e+1);
[INFO] [stdout]     |     ------------ in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 134 |     test!(-1e+1);
[INFO] [stdout]     |     ------------ in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 135 |     test!(1e-1);
[INFO] [stdout]     |     ----------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 135 |     test!(1e-1);
[INFO] [stdout]     |     ----------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 136 |     test!(-1e-1);
[INFO] [stdout]     |     ------------ in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 136 |     test!(-1e-1);
[INFO] [stdout]     |     ------------ in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 138 |     test!(1.1e1);
[INFO] [stdout]     |     ------------ in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 138 |     test!(1.1e1);
[INFO] [stdout]     |     ------------ in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 139 |     test!(-1.1e1);
[INFO] [stdout]     |     ------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 139 |     test!(-1.1e1);
[INFO] [stdout]     |     ------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 140 |     test!(1.1e+1);
[INFO] [stdout]     |     ------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 140 |     test!(1.1e+1);
[INFO] [stdout]     |     ------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 141 |     test!(-1.1e+1);
[INFO] [stdout]     |     -------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 141 |     test!(-1.1e+1);
[INFO] [stdout]     |     -------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 142 |     test!(1.1e-1);
[INFO] [stdout]     |     ------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 142 |     test!(1.1e-1);
[INFO] [stdout]     |     ------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 143 |     test!(-1.1e-1);
[INFO] [stdout]     |     -------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 143 |     test!(-1.1e-1);
[INFO] [stdout]     |     -------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 145 |     test!(7.922_816_251_426_433_759_354_395_033_5e28);
[INFO] [stdout]     |     ------------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 145 |     test!(7.922_816_251_426_433_759_354_395_033_5e28);
[INFO] [stdout]     |     ------------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 146 |     test!(-7.922_816_251_426_433_759_354_395_033_5e28);
[INFO] [stdout]     |     -------------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 146 |     test!(-7.922_816_251_426_433_759_354_395_033_5e28);
[INFO] [stdout]     |     -------------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 147 |     test!(79_228_162_514_264_337_593_543_950_335e-28);
[INFO] [stdout]     |     ------------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 147 |     test!(79_228_162_514_264_337_593_543_950_335e-28);
[INFO] [stdout]     |     ------------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: could not find `rust_decimal` in the list of imported crates
[INFO] [stdout]    --> tests/macro_tests.rs:125:17
[INFO] [stdout]     |
[INFO] [stdout] 125 |                 dec!($src),
[INFO] [stdout]     |                 ^^^^^^^^^^ could not find `rust_decimal` in the list of imported crates
[INFO] [stdout] ...
[INFO] [stdout] 148 |     test!(-79_228_162_514_264_337_593_543_950_335e-28);
[INFO] [stdout]     |     -------------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: this error originates in the macro `dec` which comes from the expansion of the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout]    --> tests/macro_tests.rs:126:17
[INFO] [stdout]     |
[INFO] [stdout] 126 |                 rust_decimal::Decimal::from_scientific(stringify!($src)).unwrap(),
[INFO] [stdout]     |                 ^^^^^^^^^^^^ use of unresolved module or unlinked crate `rust_decimal`
[INFO] [stdout] ...
[INFO] [stdout] 148 |     test!(-79_228_162_514_264_337_593_543_950_335e-28);
[INFO] [stdout]     |     -------------------------------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `rust_decimal`, use `cargo add rust_decimal` to add it to your `Cargo.toml`
[INFO] [stdout]     = note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] For more information about this error, try `rustc --explain E0433`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `rust_decimal_macros` (test "macro_tests") due to 98 previous errors
[INFO] running `Command { std: "docker" "inspect" "716e5e19d5456a08c75a8b33c0c4fa1cd8ec81529e39e5deb6dff4901fda6a54", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "716e5e19d5456a08c75a8b33c0c4fa1cd8ec81529e39e5deb6dff4901fda6a54", kill_on_drop: false }`
[INFO] [stdout] 716e5e19d5456a08c75a8b33c0c4fa1cd8ec81529e39e5deb6dff4901fda6a54
