-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
149 additions
and
514 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# [](https://github.com/voiceapiai/ralertsinua/compare/v0.5.0...v) (2024-05-18) | ||
|
||
|
||
|
||
# [0.5.0](https://github.com/voiceapiai/ralertsinua/compare/v0.3.3...v0.5.0) (2024-05-17) | ||
|
||
|
||
### Features | ||
|
||
* location rendering and improvements ([#8](https://github.com/voiceapiai/ralertsinua/issues/8)) ([09cdb0c](https://github.com/voiceapiai/ralertsinua/commit/09cdb0cba2dc6cf042d23d749fcd3f949a5cdea4)) | ||
|
||
|
||
|
||
## [0.3.3](https://github.com/voiceapiai/ralertsinua/compare/v0.1.1...v0.3.3) (2024-05-08) | ||
|
||
|
||
### Features | ||
|
||
* list widget navigation ([#3](https://github.com/voiceapiai/ralertsinua/issues/3)) ([00d7851](https://github.com/voiceapiai/ralertsinua/commit/00d78516adcbf1bf2fa70c8624dec0854ac3b0ad)) | ||
* **models:** alert models compatibility ([#7](https://github.com/voiceapiai/ralertsinua/issues/7)) ([7777f99](https://github.com/voiceapiai/ralertsinua/commit/7777f99dc7bc95d8103c4a3f7150ddc28c588363)) | ||
|
||
|
||
|
||
## [0.1.1](https://github.com/voiceapiai/ralertsinua/compare/393a3b4140641dccf058b7002d2c64d69cabb047...v0.1.1) (2024-04-15) | ||
|
||
|
||
### Features | ||
|
||
* canvas rendering to use Ukraine shape, add data dir & more geo files ([dc3a689](https://github.com/voiceapiai/ralertsinua/commit/dc3a689933a3d08f24528f279510b6fd280c1519)) | ||
* draw ukraine borders in terminal ([0c6722e](https://github.com/voiceapiai/ralertsinua/commit/0c6722ec4d5f797e62a8843cd3c8d9706340e10a)) | ||
* initial commit, generated from rataui example async ([393a3b4](https://github.com/voiceapiai/ralertsinua/commit/393a3b4140641dccf058b7002d2c64d69cabb047)) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ description = "Rust async API wrapper (reqwest) & TUI (ratatui) for alerts.in.ua | |
repository = "https://github.com/voiceapiai/ralertsinua" | ||
categories = ["api-bindings", "geo"] | ||
keywords = ["geo", "api", "tui", "cli"] | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
authors = ["voiceapiai <[email protected]>"] | ||
license = "MIT" | ||
edition = "2021" | ||
|
@@ -49,13 +49,13 @@ inherits = "release" | |
lto = "thin" | ||
|
||
[dependencies] | ||
ralertsinua-geo = { path = "ralertsinua-geo", version = "0.5.0", features = [ | ||
ralertsinua-geo = { path = "ralertsinua-geo", version = "0.5.1", features = [ | ||
"tui", | ||
] } | ||
ralertsinua-http = { path = "ralertsinua-http", version = "0.5.0", features = [ | ||
ralertsinua-http = { path = "ralertsinua-http", version = "0.5.1", features = [ | ||
"cache", | ||
] } | ||
ralertsinua-models = { path = "ralertsinua-models", version = "0.5.0" } | ||
ralertsinua-models = { path = "ralertsinua-models", version = "0.5.1" } | ||
|
||
async-trait = "0.1.80" | ||
bincode = "1.3.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ description = "Geo compatibility layer for alerts.in.ua" | |
repository = "https://github.com/voiceapiai/ralertsinua" | ||
categories = ["api-bindings"] | ||
keywords = ["geo", "api", "tui", "cli"] | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
license = "MIT" | ||
edition = "2021" | ||
authors = ["voiceapiai <[email protected]>"] | ||
readme = "../README.md" | ||
readme = "./README.md" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
|
@@ -22,10 +22,12 @@ lazy_static = "1.4.0" | |
miette = { version = "7.2.0", features = ["serde"] } | ||
ratatui = { version = "0.26.2", optional = true } | ||
serde = { version = "1.0.198", features = ["derive"] } | ||
serde_json = "1.0.116" | ||
thiserror = "1.0" | ||
wkt = "0.10.3" | ||
|
||
[dev-dependencies] | ||
serde_json = "1.0.116" | ||
|
||
[features] | ||
default = [] | ||
tui = ["ratatui"] |
Oops, something went wrong.