Alexandre Leblanc 5 роки тому
батько
коміт
6aeb7e5510
3 змінених файлів з 22 додано та 0 видалено
  1. 6 0
      Cargo.lock
  2. 12 0
      Cargo.toml
  3. 4 0
      src/main.rs

+ 6 - 0
Cargo.lock

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

+ 12 - 0
Cargo.toml

@@ -0,0 +1,12 @@
+[package]
+name = "rs-webmark"
+version = "0.1.0"
+authors = ["alexandrel"]
+edition = "2018"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
+maud = "*"
+pulldown-cmark = "*"
+syntect = "3.0"

+ 4 - 0
src/main.rs

@@ -0,0 +1,4 @@
+fn main() {
+    // Layout of site
+    println!("Hello, world!");
+}