Compare commits
4 Commits
242c13099b
...
v0.1.2-dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 0aa36825b0 | |||
|
|
cf5ca2073e | ||
| 453649b1ce | |||
| 398e9bf71d |
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,17 +1,16 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "csrs"
|
name = "csrs"
|
||||||
version = "0.1.1-dev"
|
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."
|
description = "CUBETIQ Syncer for database tools and internal tool for the team in the company."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/CUBETIQ/csrs.git"
|
repository = "https://github.com/CUBETIQ/csrs.git"
|
||||||
keywords = ["rust-cli", "cubetiq-cli", "tools", "clap"]
|
keywords = ["rust-cli", "cubetiq-cli", "tools", "clap"]
|
||||||
categories = ["cli", "tools"]
|
categories = ["command-line-interface", "command-line-utilities"]
|
||||||
readme = "README.md"
|
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"
|
||||||
Reference in New Issue
Block a user