Publish database-tree (#49)

* publish database-tree

* use v0.1.0-alpha.1

* always run cargo publish
pull/50/head
Takayuki Maeda 3 years ago committed by GitHub
parent 95d6e8b2b4
commit b4a1cc792d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -28,4 +28,9 @@ jobs:
- run: cargo login ${CRATES_IO_TOKEN} - run: cargo login ${CRATES_IO_TOKEN}
env: env:
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }} CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
- name: Cargo puhlish database-tree
run: |
cd database-tree
cargo publish
- run: cargo publish - run: cargo publish
if: ${{ always() }}

2
Cargo.lock generated

@ -367,7 +367,7 @@ dependencies = [
[[package]] [[package]]
name = "database-tree" name = "database-tree"
version = "0.1.0" version = "0.1.0-alpha.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",

@ -29,7 +29,7 @@ toml = "0.4"
regex = "1" regex = "1"
strum = "0.21" strum = "0.21"
strum_macros = "0.21" strum_macros = "0.21"
database-tree = { path = "./database-tree", version = "0.1" } database-tree = { path = "./database-tree", version = "0.1.0-alpha.1" }
easy-cast = "0.4" easy-cast = "0.4"
copypasta = { version = "0.7.0", default-features = false } copypasta = { version = "0.7.0", default-features = false }
async-trait = "0.1.50" async-trait = "0.1.50"

@ -1,13 +1,13 @@
[package] [package]
name = "database-tree" name = "database-tree"
version = "0.1.0" version = "0.1.0-alpha.1"
authors = ["Takayuki Maeda <takoyaki0316@gmail.com>"] authors = ["Takayuki Maeda <takoyaki0316@gmail.com>"]
edition = "2018" edition = "2018"
license = "MIT" license = "MIT"
homepage = "https://github.com/TaKO8Ki/gobang" homepage = "https://github.com/TaKO8Ki/gobang"
repository = "https://github.com/TaKO8Ki/gobang" repository = "https://github.com/TaKO8Ki/gobang"
readme = "README.md" readme = "README.md"
description = "A cross-platform terminal database tool written in Rust" description = "Database tree structure"
[dependencies] [dependencies]
thiserror = "1.0" thiserror = "1.0"

Loading…
Cancel
Save