We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01c3bc9 commit cd90f28Copy full SHA for cd90f28
Cargo.toml
@@ -1,3 +1,4 @@
1
[workspace]
2
members = [
3
+ "create-no-std-lib-1",
4
]
create-no-std-lib-1/Cargo.toml
@@ -0,0 +1,8 @@
+[package]
+name = "create-no-std-lib-1"
+version = "0.1.0"
+edition = "2018"
5
+
6
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8
+[dependencies]
create-no-std-lib-1/src/lib.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}
0 commit comments