diff options
Diffstat (limited to 'tests/no_std_check/Cargo.toml')
-rw-r--r-- | tests/no_std_check/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/no_std_check/Cargo.toml b/tests/no_std_check/Cargo.toml new file mode 100644 index 0000000..f5ad827 --- /dev/null +++ b/tests/no_std_check/Cargo.toml @@ -0,0 +1,24 @@ +[package] + +name = "no-std-test" +version = "0.0.1" +authors = ["iximeow <me@iximeow.net>"] +license = "0BSD" +description = "test crate to check that yaxpeax-arm is actually no-stds" +edition = "2021" +publish = false + +[[bin]] +name = "no-std-test" +path = "src/main.rs" + +[profile.dev] +panic = "abort" + +[profile.release] +panic = "abort" + +[dependencies] +yaxpeax-arm = { path = "../..", default-features = false } + +[workspace] |