Explorar o código

Initial commit.

Alexandre Leblanc %!s(int64=5) %!d(string=hai) anos
pai
achega
6aeb7e5510
Modificáronse 3 ficheiros con 22 adicións e 0 borrados
  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!");
+}