Compare commits
1 Commits
renovate/a
...
5380987260
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5380987260 |
17
CHANGELOG.md
17
CHANGELOG.md
@@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.5.1] - 2025-01-11
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- *(deps)* update rust crate uuid to v1.11.1
|
||||||
|
- *(deps)* update rust crate serde_json to v1.0.135
|
||||||
|
- *(deps)* update all dependencies
|
||||||
|
- *(deps)* update rust crate serde to v1.0.217
|
||||||
|
- *(deps)* update rust crate serde_json to v1.0.134
|
||||||
|
|
||||||
|
### Other
|
||||||
|
- *(deps)* update rust crate clap to v4.5.26
|
||||||
|
- *(deps)* update rust crate tokio to v1.43.0
|
||||||
|
- *(deps)* update rust crate clap to v4.5.24
|
||||||
|
- *(deps)* update rust crate axum to 0.8
|
||||||
|
- *(deps)* update rust crate itertools to 0.14.0
|
||||||
|
- *(deps)* update rust crate anyhow to v1.0.95
|
||||||
|
|
||||||
## [0.5.0] - 2024-12-15
|
## [0.5.0] - 2024-12-15
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
697
Cargo.lock
generated
697
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -23,7 +23,7 @@ tonic = { version = "0.12.0", features = ["tls", "tls-roots"] }
|
|||||||
futures = { version = "0.3.30" }
|
futures = { version = "0.3.30" }
|
||||||
sha2 = { version = "0.10.8" }
|
sha2 = { version = "0.10.8" }
|
||||||
hex = { version = "0.4.3" }
|
hex = { version = "0.4.3" }
|
||||||
toml = { version = "0.9.0" }
|
toml = { version = "0.8.14" }
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# hyperlog
|
# hyperlog
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
- [x] Display todos as todos
|
- [x] Display todos as todos
|
||||||
- [x] Create sections
|
- [x] Create sections
|
||||||
- [x] Edit todos
|
- [x] Edit todos
|
||||||
|
|||||||
BIN
assets/demo.gif
BIN
assets/demo.gif
Binary file not shown.
|
Before Width: | Height: | Size: 472 KiB |
@@ -2,7 +2,7 @@
|
|||||||
name = "hyperlog-tui"
|
name = "hyperlog-tui"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
repository = "https://git.kjuulh.io/kjuulh/hyperlog"
|
repository = "https://git.front.kjuulh.io/kjuulh/hyperlog"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
hyperlog-core.workspace = true
|
hyperlog-core.workspace = true
|
||||||
@@ -23,12 +23,12 @@ hex.workspace = true
|
|||||||
toml.workspace = true
|
toml.workspace = true
|
||||||
|
|
||||||
ratatui = "0.29.0"
|
ratatui = "0.29.0"
|
||||||
crossterm = { version = "0.29.0", features = ["event-stream"] }
|
crossterm = { version = "0.28.0", features = ["event-stream"] }
|
||||||
directories = "6.0.0"
|
directories = "5.0.1"
|
||||||
human-panic = "2.0.0"
|
human-panic = "2.0.0"
|
||||||
ropey = "1.6.1"
|
ropey = "1.6.1"
|
||||||
bus = "2.4.1"
|
bus = "2.4.1"
|
||||||
dirs = "6.0.0"
|
dirs = "5.0.1"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
similar-asserts = "1.5.0"
|
similar-asserts = "1.5.0"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
name = "hyperlog"
|
name = "hyperlog"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
repository = "https://git.kjuulh.io/kjuulh/hyperlog"
|
repository = "https://git.front.kjuulh.io/kjuulh/hyperlog"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
hyperlog-core.workspace = true
|
hyperlog-core.workspace = true
|
||||||
@@ -21,7 +21,7 @@ serde_json.workspace = true
|
|||||||
uuid.workspace = true
|
uuid.workspace = true
|
||||||
|
|
||||||
bus = "2.4.1"
|
bus = "2.4.1"
|
||||||
dirs = "6.0.0"
|
dirs = "5.0.1"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
similar-asserts = "1.5.0"
|
similar-asserts = "1.5.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# yaml-language-server: $schema=https://git.kjuulh.io/kjuulh/cuddle/raw/branch/main/schemas/base.json
|
# yaml-language-server: $schema=https://git.front.kjuulh.io/kjuulh/cuddle/raw/branch/main/schemas/base.json
|
||||||
|
|
||||||
base: "git@git.kjuulh.io:kjuulh/cuddle-rust-service-plan.git"
|
base: "git@git.front.kjuulh.io:kjuulh/cuddle-rust-service-plan.git"
|
||||||
|
|
||||||
vars:
|
vars:
|
||||||
service: "hyperlog"
|
service: "hyperlog"
|
||||||
@@ -35,7 +35,7 @@ please:
|
|||||||
repository: hyperlog
|
repository: hyperlog
|
||||||
branch: main
|
branch: main
|
||||||
settings:
|
settings:
|
||||||
api_url: https://git.kjuulh.io
|
api_url: https://git.front.kjuulh.io
|
||||||
actions:
|
actions:
|
||||||
rust:
|
rust:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user