Compare commits
8 Commits
ca17e19d15
...
v0.1.2-dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 0aa36825b0 | |||
|
|
cf5ca2073e | ||
| 453649b1ce | |||
| 398e9bf71d | |||
| 242c13099b | |||
| e77020a15b | |||
| 645cd73d44 | |||
| 6f670a6f8c |
17
.github/workflows/rust.yml
vendored
Normal file
17
.github/workflows/rust.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
on: [push]
|
||||||
|
|
||||||
|
name: CSRS - CI
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_and_test:
|
||||||
|
name: csrs
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
- uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: build
|
||||||
|
args: --release --all-features
|
||||||
4
.travis.yml
Normal file
4
.travis.yml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# .travis.yml
|
||||||
|
language: rust
|
||||||
|
rust:
|
||||||
|
- stable
|
||||||
@@ -1,11 +1,16 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "csrs"
|
name = "csrs"
|
||||||
version = "0.1.0"
|
version = "0.1.2-dev"
|
||||||
authors = ["Sambo Chea <sombochea@cubetiqs.com>"]
|
authors = ["Sambo Chea <sombochea@cubetiqs.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
description = "CUBETIQ Syncer for database tools and internal tool for the team in the company."
|
||||||
|
license = "MIT"
|
||||||
|
repository = "https://github.com/CUBETIQ/csrs.git"
|
||||||
|
keywords = ["rust-cli", "cubetiq-cli", "tools", "clap"]
|
||||||
|
categories = ["command-line-interface", "command-line-utilities"]
|
||||||
|
readme = "README.md"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
structopt = "0.3.13"
|
|
||||||
clap = "2.33.3"
|
clap = "2.33.3"
|
||||||
@@ -1,6 +1,11 @@
|
|||||||
<code>CUBETIQ Syncer for Database Tools</code>
|
<div align="center">
|
||||||
|
<h2><code>CUBETIQ Syncer for Database Tools</code></h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
<h4><code>Roadmap</code></h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
<code>Roadmap</code>
|
|
||||||
- [ ] Implement the command line app (CLI)
|
- [ ] Implement the command line app (CLI)
|
||||||
- [ ] Make the cli call the api for sync the data
|
- [ ] Make the cli call the api for sync the data
|
||||||
- [ ] Encrypt the data within password
|
- [ ] Encrypt the data within password
|
||||||
|
|||||||
Reference in New Issue
Block a user