mirror of
https://github.com/TECHNOFAB11/pay-respects.git
synced 2025-12-11 22:10:09 +01:00
cargo: update dependencies
This commit is contained in:
parent
a378e26255
commit
9d42dcbb4c
4 changed files with 38 additions and 12 deletions
|
|
@ -5,7 +5,7 @@ All notable changes to components of this project since 0.5.14 will be documente
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
## [0.6.0]
|
||||
|
||||
### Added
|
||||
|
||||
|
|
@ -39,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
History start.
|
||||
|
||||
[unreleased]: https://github.com/iffse/pay-respects/compare/v0.5.15..HEAD
|
||||
[unreleased]: https://github.com/iffse/pay-respects/compare/v0.6.0..HEAD
|
||||
[0.6.0]: https://github.com/iffse/pay-respects/compare/v0.5.15..v0.6.0
|
||||
[0.5.15]: https://github.com/iffse/pay-respects/compare/v0.5.14..v0.5.15
|
||||
[0.5.14]: https://github.com/iffse/pay-respects/commits/v0.5.14
|
||||
|
|
|
|||
34
Cargo.lock
generated
34
Cargo.lock
generated
|
|
@ -192,9 +192,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "fastrand"
|
||||
version = "2.2.0"
|
||||
version = "2.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4"
|
||||
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
||||
|
||||
[[package]]
|
||||
name = "fuzzy-matcher"
|
||||
|
|
@ -468,12 +468,12 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "pay-respects"
|
||||
version = "0.5.15"
|
||||
version = "0.6.0"
|
||||
dependencies = [
|
||||
"colored",
|
||||
"inquire",
|
||||
"pay-respects-parser",
|
||||
"pay-respects-utils",
|
||||
"pay-respects-parser 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"pay-respects-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"regex-lite",
|
||||
"rust-i18n",
|
||||
"sys-locale",
|
||||
|
|
@ -496,7 +496,7 @@ dependencies = [
|
|||
name = "pay-respects-module-runtime-rules"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"pay-respects-utils",
|
||||
"pay-respects-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"regex-lite",
|
||||
"serde",
|
||||
"toml 0.8.19",
|
||||
|
|
@ -513,6 +513,19 @@ dependencies = [
|
|||
"toml 0.8.19",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pay-respects-parser"
|
||||
version = "0.3.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ba0454515360fcce0ab87f045f7736b25fc6c5d8a1785f5d8aa208486dce67a8"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"serde",
|
||||
"syn 1.0.109",
|
||||
"toml 0.8.19",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pay-respects-utils"
|
||||
version = "0.1.0"
|
||||
|
|
@ -520,6 +533,15 @@ dependencies = [
|
|||
"regex-lite",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pay-respects-utils"
|
||||
version = "0.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e01bc5b41ef9368d5c9d928e4462943083f178146089e4eccefbd09c142170d1"
|
||||
dependencies = [
|
||||
"regex-lite",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pkg-config"
|
||||
version = "0.3.31"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pay-respects"
|
||||
authors = ["iff <iff@ik.me>"]
|
||||
version = "0.5.15"
|
||||
version = "0.6.0"
|
||||
edition = "2021"
|
||||
|
||||
# for crates.io
|
||||
|
|
@ -21,5 +21,7 @@ regex-lite = "0.1"
|
|||
|
||||
inquire = "0.7.5"
|
||||
|
||||
pay-respects-parser = { version = "0.3.3", path = "../parser" }
|
||||
pay-respects-utils = {version = "0.1.0", path = "../utils"}
|
||||
pay-respects-parser = "0.3.3"
|
||||
pay-respects-utils = "0.1.0"
|
||||
# pay-respects-parser = { path = "../parser" }
|
||||
# pay-respects-utils = { path = "../utils"}
|
||||
|
|
|
|||
|
|
@ -16,4 +16,5 @@ regex-lite = "0.1"
|
|||
|
||||
toml = { version = "0.8" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
pay-respects-utils = {version = "0.1.0", path = "../utils"}
|
||||
pay-respects-utils = "0.1.0"
|
||||
# pay-respects-utils = { path = "../utils" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue