Compare commits

...

2 Commits

Author SHA1 Message Date
bbe70d60c0 build: Fix dependencies in manifest
Some checks reported errors
continuous-integration/drone/tag Build encountered an error
2022-09-02 22:17:19 +02:00
0e8c3a4b52 ci: Trigger publish on tag 2022-09-02 22:17:04 +02:00
3 changed files with 19 additions and 2 deletions

15
.drone.yml Normal file
View File

@ -0,0 +1,15 @@
kind: pipeline
type: docker
name: default
steps:
- name: publish
image: rust:slim
command:
- build
environment:
CARGO_REGISTRY_TOKEN:
cargo_token: cargo_token
trigger:
event:
- tag

4
Cargo.lock generated
View File

@ -66,7 +66,9 @@ dependencies = [
[[package]]
name = "dental-notation"
version = "0.1.0"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3c00b2dc40e4c58d6bce550f3c415454be6fbc4b79024918cb40931828c88fb"
dependencies = [
"owo-colors",
]

View File

@ -8,4 +8,4 @@ categories = ["parsing", "command-line-utilities"]
[dependencies]
clap = {version = "3.2.5", features = [ "derive" ] }
dental-notation = { path = ".." }
dental-notation = "1.0.0"