longjin 1 rok pred
rodič
commit
f61a5629c7
3 zmenil súbory, kde vykonal 15 pridanie a 0 odobranie
  1. 9 0
      Cargo.toml
  2. 3 0
      rust-toolchain.toml
  3. 3 0
      src/main.rs

+ 9 - 0
Cargo.toml

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

+ 3 - 0
rust-toolchain.toml

@@ -0,0 +1,3 @@
+[toolchain]
+channel = "nightly-2023-01-21"
+components = ["rust-src"]

+ 3 - 0
src/main.rs

@@ -0,0 +1,3 @@
+fn main() {
+    println!("Hello, world!");
+}