This commit is contained in:
nora 2025-04-20 15:56:05 +02:00
parent c5621b3794
commit c5118b9daf
6 changed files with 146 additions and 0 deletions

7
cargo_tests/a/Cargo.lock generated Normal file
View file

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "a"
version = "0.1.0"

9
cargo_tests/a/Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "a"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[workspace]

View file

@ -0,0 +1,3 @@
pub struct A {}
fn main() {}