Browse Source

Create a new cargo project

tags/v0.0.0-test.4
Philipp Oppermann 3 years ago
parent
commit
d684298a0b
3 changed files with 19 additions and 0 deletions
  1. +7
    -0
      Cargo.lock
  2. +9
    -0
      Cargo.toml
  3. +3
    -0
      src/main.rs

+ 7
- 0
Cargo.lock View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3

[[package]]
name = "dora-rs"
version = "0.1.0"

+ 9
- 0
Cargo.toml View File

@@ -0,0 +1,9 @@
[package]
name = "dora-rs"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[workspace]


+ 3
- 0
src/main.rs View File

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

Loading…
Cancel
Save