Compare commits
36 Commits
v0.5.0
...
43146cee2a
| Author | SHA1 | Date | |
|---|---|---|---|
| 43146cee2a | |||
| 26f44ffde9 | |||
| 407c77028a | |||
| fbdeb0f51a | |||
|
47b06a02d0
|
|||
| 10f832c1d1 | |||
| c57b1bc434 | |||
| 6b2cc8925a | |||
| e9b810837e | |||
| 12fd200185 | |||
| bb4e6ba6ab | |||
| 66099d5bb7 | |||
| 817d1db963 | |||
| 4e5ed0c27f | |||
| 245aa67f09 | |||
| 43593c5852 | |||
| 657b11c3f7 | |||
| 8ce42aac25 | |||
| ada480ea02 | |||
| 8a995b191c | |||
| 4897e56d7d | |||
| c69ebb0fe4 | |||
| 0b71fd889e | |||
| 68f6ce63e5 | |||
| e7e169352d | |||
| fc392ac43b | |||
| 25f854f2fe | |||
| eaaa63e0b6 | |||
| 000f96f965 | |||
| 8870b89378 | |||
| 2704b0b0c3 | |||
| 39b05501f1 | |||
| 2d4ae16de8 | |||
| f036db202d | |||
| 384ee78652 | |||
| f5ca5970c1 |
804
Cargo.lock
generated
804
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -14,16 +14,16 @@ tracing = { version = "0.1", features = ["log"] }
|
|||||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
||||||
clap = { version = "4", features = ["derive", "env"] }
|
clap = { version = "4", features = ["derive", "env"] }
|
||||||
dotenv = { version = "0.15" }
|
dotenv = { version = "0.15" }
|
||||||
axum = { version = "0.7" }
|
axum = { version = "0.8" }
|
||||||
serde = { version = "1.0.202", features = ["derive"] }
|
serde = { version = "1.0.202", features = ["derive"] }
|
||||||
serde_json = "1.0.117"
|
serde_json = "1.0.117"
|
||||||
itertools = "0.13.0"
|
itertools = "0.14.0"
|
||||||
uuid = { version = "1.8.0", features = ["v4"] }
|
uuid = { version = "1.8.0", features = ["v4"] }
|
||||||
tonic = { version = "0.12.0", features = ["tls", "tls-roots"] }
|
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.8.14" }
|
toml = { version = "0.9.0" }
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.5.0"
|
version = "0.5.0"
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
# 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
Normal file
BIN
assets/demo.gif
Normal file
Binary file not shown.
|
After 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.front.kjuulh.io/kjuulh/hyperlog"
|
repository = "https://git.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.28.0", features = ["event-stream"] }
|
crossterm = { version = "0.29.0", features = ["event-stream"] }
|
||||||
directories = "5.0.1"
|
directories = "6.0.0"
|
||||||
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 = "5.0.1"
|
dirs = "6.0.0"
|
||||||
|
|
||||||
[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.front.kjuulh.io/kjuulh/hyperlog"
|
repository = "https://git.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 = "5.0.1"
|
dirs = "6.0.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
similar-asserts = "1.5.0"
|
similar-asserts = "1.5.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# yaml-language-server: $schema=https://git.front.kjuulh.io/kjuulh/cuddle/raw/branch/main/schemas/base.json
|
# yaml-language-server: $schema=https://git.kjuulh.io/kjuulh/cuddle/raw/branch/main/schemas/base.json
|
||||||
|
|
||||||
base: "git@git.front.kjuulh.io:kjuulh/cuddle-rust-service-plan.git"
|
base: "git@git.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.front.kjuulh.io
|
api_url: https://git.kjuulh.io
|
||||||
actions:
|
actions:
|
||||||
rust:
|
rust:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user