Skip to content

Commit 9ac9804

Browse files
authored
Merge pull request #88 from YUCLing/refactor/napi-rs
从 neon-rs 迁移到 napi-rs
2 parents 3f018d2 + 322600d commit 9ac9804

104 files changed

Lines changed: 5813 additions & 2018 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ gui/static/
1212
.svelte-kit/
1313

1414
# Module dist
15-
/modules/**/lib/**
1615
/modules/**/dist/**
16+
/modules/**/index.js
17+
/modules/**/index.d.ts

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
[workspace]
2-
members = ["modules/database/crates/@open-orpheus/database", "modules/window/crates/@open-orpheus/window", "modules/ui/crates/@open-orpheus/ui"]
2+
members = ["modules/database", "modules/window", "modules/ui"]
33
resolver = "3"
4+
5+
[profile.release]
6+
lto = true
7+
strip = "symbols"
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[target.x86_64-pc-windows-msvc]
2+
rustflags = ["-C", "target-feature=+crt-static"]

0 commit comments

Comments
 (0)