aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-10-26 14:48:28 +0100
committerAkshay <[email protected]>2021-10-26 15:20:23 +0100
commit20d195988de1014517ff1a1c8c1041cff5f88e05 (patch)
tree89b3f1cbce339211cad7f3489592e2bddc5c0518 /lib
parent393c28566206b4a077be3cfb0e4e931544f0709e (diff)
set internal crates to 0.0.0, bump to v0.2.0v0.2.0
Diffstat (limited to 'lib')
-rw-r--r--lib/Cargo.toml2
-rw-r--r--lib/src/lib.rs5
2 files changed, 5 insertions, 2 deletions
diff --git a/lib/Cargo.toml b/lib/Cargo.toml
index e9bca06..b876c4c 100644
--- a/lib/Cargo.toml
+++ b/lib/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "lib" 2name = "lib"
3version = "0.1.0" 3version = "0.0.0"
4edition = "2018" 4edition = "2018"
5 5
6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
diff --git a/lib/src/lib.rs b/lib/src/lib.rs
index bde039f..41e38c8 100644
--- a/lib/src/lib.rs
+++ b/lib/src/lib.rs
@@ -7,7 +7,10 @@ use rnix::{SyntaxElement, SyntaxKind, TextRange};
7use std::{convert::Into, default::Default}; 7use std::{convert::Into, default::Default};
8 8
9#[cfg(feature = "json-out")] 9#[cfg(feature = "json-out")]
10use serde::{Serialize, ser::{SerializeStruct, Serializer}}; 10use serde::{
11 ser::{SerializeStruct, Serializer},
12 Serialize,
13};
11 14
12/// Report generated by a lint 15/// Report generated by a lint
13#[derive(Debug, Default)] 16#[derive(Debug, Default)]