diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2024-02-11 17:47:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-11 17:47:46 +0100 |
commit | 205c3e3e6382de53e267ead750f2fe92cca06725 (patch) | |
tree | 7aef6708cd1bad201be33bf9694c836195f7fc2e /src-tauri/Cargo.toml | |
parent | dc2e151e563a6b4b363c465f6da53577ef0a24d6 (diff) | |
download | FlightCore-205c3e3e6382de53e267ead750f2fe92cca06725.tar.gz FlightCore-205c3e3e6382de53e267ead750f2fe92cca06725.zip |
feat: Release announcements generator (#792)
Adds a dev tool to semi-auto-generate release announcements that can be posted in announcements channels
Diffstat (limited to 'src-tauri/Cargo.toml')
-rw-r--r-- | src-tauri/Cargo.toml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 23f7edd1..9851b02a 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -66,6 +66,12 @@ semver = "1.0" glob = "0.3.1" dirs = "5" +# Interacting with GitHub +octocrab = "0.34.0" +# Library for removing markdown links +remove-markdown-links = "1.0.0" + + [target.'cfg(windows)'.dependencies] # Windows API stuff winapi = "0.3.9" |