seam

Symbolic-Expressions As Markup.
git clone git://git.knutsen.co/seam
Log | Files | Refs | README | LICENSE

commit 67dd231f416eb68e21f012cd0b3e331bd8a4ed63
parent edaccdcde1f727fa6bf1bc15394d588daf650576
Author: knutsen <samuel@knutsen.co>
Date:   Sat, 20 Mar 2021 01:21:27 +0000

Add .lock file and change version in source.

Diffstat:
MCargo.lock | 4+++-
Msrc/lib.rs | 2+-
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "atty" version = "0.2.14" @@ -83,7 +85,7 @@ dependencies = [ [[package]] name = "seam" -version = "0.1.5" +version = "0.1.6" dependencies = [ "chrono", "colored", diff --git a/src/lib.rs b/src/lib.rs @@ -6,7 +6,7 @@ use parse::{expander, parser, lexer}; use std::error::Error; use std::{fs, io, path::Path}; -pub const VERSION : (u8, u8, u8) = (0, 1, 5); +pub const VERSION : (u8, u8, u8) = (0, 1, 6); pub fn parse<P: AsRef<Path>>(string : String, source : Option<P>) -> Result<parser::ParseTree, Box<dyn Error>> {