From fc1090ea8db48af298f9311e7dfc3e2489bc41f1 Mon Sep 17 00:00:00 2001
From: Alexey Velikiy <cg@corpglory.com>
Date: Wed, 13 Oct 2021 21:52:54 +0300
Subject: [PATCH] subbeat init

---
 Cargo.lock  | 7 +++++++
 Cargo.toml  | 9 ++++++++-
 src/main.rs | 2 +-
 3 files changed, 16 insertions(+), 2 deletions(-)
 create mode 100644 Cargo.lock

diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644
index 0000000..64e955b
--- /dev/null
+++ b/Cargo.lock
@@ -0,0 +1,7 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 3
+
+[[package]]
+name = "subbeat"
+version = "0.0.1"
diff --git a/Cargo.toml b/Cargo.toml
index 5ee51d4..34d0524 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,8 +1,15 @@
 [package]
 name = "subbeat"
-version = "0.1.0"
+version = "0.0.1"
 edition = "2018"
 
+license = "MIT OR Apache-2.0"
+description = "Time Series kit"
+homepage = "https://subbeat.rs/"
+documentation = "https://docs.rs/subbeat"
+repository = "https://github.com/subbeat/subbeat"
+readme = "README.md"
+
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
diff --git a/src/main.rs b/src/main.rs
index e7a11a9..bc9c703 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,3 +1,3 @@
 fn main() {
-    println!("Hello, world!");
+    println!("welcom from subbeat, work in progress");
 }