chore: bump version to 0.2.0

This commit is contained in:
PoiScript 2019-06-28 16:23:35 +08:00
parent 1a2dfd9d85
commit ce8c0b1c1c
3 changed files with 2 additions and 14 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "orgize" name = "orgize"
version = "0.1.3" version = "0.2.0"
authors = ["PoiScript <poiscript@gmail.com>"] authors = ["PoiScript <poiscript@gmail.com>"]
description = "A Rust library for parsing orgmode files." description = "A Rust library for parsing orgmode files."
repository = "https://github.com/PoiScript/orgize" repository = "https://github.com/PoiScript/orgize"
@ -22,7 +22,7 @@ chrono = { version = "0.4.7", optional = true }
indextree = "3.2.0" indextree = "3.2.0"
jetscii = "0.4.4" jetscii = "0.4.4"
memchr = "2.2.0" memchr = "2.2.0"
serde = { version = "1.0.93", optional = true, features = ["derive"] } serde = { version = "1.0.94", optional = true, features = ["derive"] }
[dev-dependencies] [dev-dependencies]
pretty_assertions = "0.6.1" pretty_assertions = "0.6.1"

View file

@ -1,11 +0,0 @@
#[cfg_attr(test, derive(PartialEq))]
#[derive(Debug)]
pub struct Fragment<'a> {
value: &'a str,
}
impl<'a> Fragment<'a> {
pub fn parse(src: &'a str) -> Option<(Fragment<'a>, usize)> {
None
}
}

View file

@ -7,7 +7,6 @@ mod drawer;
mod dyn_block; mod dyn_block;
mod fn_def; mod fn_def;
mod fn_ref; mod fn_ref;
mod fragment;
mod headline; mod headline;
mod inline_call; mod inline_call;
mod inline_src; mod inline_src;