Skip to content

Commit 5147b85

Browse files
committed
Deploy to winget
1 parent 4fca0b4 commit 5147b85

4 files changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"changes":{"libs/braillify/Cargo.toml":"Patch"},"note":"Deploy to winget","date":"2025-11-24T11:42:06.284293600Z"}

Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/braillify/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ assert_cmd = "2"
2929
predicates = "3"
3030
escargot = "0.5.15"
3131

32+
[target.'cfg(windows)'.build-dependencies]
33+
embed-manifest = "1.0"
34+
3235
[features]
3336
default = ["cli"]
3437
cli = ["clap", "anyhow", "rustyline"]

libs/braillify/build.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#[cfg(windows)]
2+
use embed_manifest::{embed_manifest, new_manifest};
3+
4+
#[cfg(windows)]
5+
fn main() {
6+
embed_manifest(new_manifest("Braillify.Braillify")).expect("unable to embed manifest file");
7+
}
8+
9+
#[cfg(not(windows))]
10+
fn main() {}

0 commit comments

Comments
 (0)