Skip to content

Commit

Permalink
🧐 Chore: Add rust
Browse files Browse the repository at this point in the history
  • Loading branch information
roninjin10 committed Dec 3, 2024
1 parent 5b069da commit c97643d
Show file tree
Hide file tree
Showing 34 changed files with 2,017 additions and 124 deletions.
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[build]
target-dir = 'dist/target'
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,15 @@ Thumbs.db
/target
_
.direnv

*.node

/target/
**/*.rs.bk
debug/
**/*.pdb
*.o
*.so
*.dylib
*.dll
*.rlib
271 changes: 271 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

[workspace]
resolver = '2'
members = [
'packages/my_rust_node_lib',
]

[profile.release]
lto = true
Loading

0 comments on commit c97643d

Please sign in to comment.