Add move-money-dynamic crate manifest, ignore bindings in git, install wasm32 target in CI
All checks were successful
test / test (push) Successful in 17m49s
All checks were successful
test / test (push) Successful in 17m49s
This commit is contained in:
@@ -11,6 +11,7 @@ jobs:
|
||||
lfs: true
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
- run: rustup target add wasm32-unknown-unknown
|
||||
# Build webassembly module
|
||||
- run: cargo install cargo-component
|
||||
- run: cargo component build --target wasm32-unknown-unknown --release -p move-money-dynamic
|
||||
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -6,4 +6,5 @@
|
||||
*.h
|
||||
*.py
|
||||
.idea
|
||||
/testing/output/*.csv
|
||||
/testing/output/*.csv
|
||||
bindings.rs
|
||||
17
move-money-dynamic/Cargo.toml
Normal file
17
move-money-dynamic/Cargo.toml
Normal file
@@ -0,0 +1,17 @@
|
||||
[package]
|
||||
name = "move-money-dynamic"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
wit-bindgen-rt = { version = "0.24.0", features = ["bitflags"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
itertools = "0.14.0"
|
||||
csv = "1"
|
||||
anyhow = "1"
|
||||
|
||||
[lib]
|
||||
crate-type = ["cdylib"]
|
||||
|
||||
[package.metadata.component]
|
||||
package = "move-money-dynamic:test"
|
||||
Reference in New Issue
Block a user