/ duper_uniffi / justfile
justfile
 1  default:
 2    just --list
 3  
 4  bindgen:
 5    uniffi-bindgen-cs src/duper.udl --config uniffi.toml --out-dir dotnet
 6  
 7  build-debug:
 8    cargo build
 9  
10  test: build-debug bindgen test-dotnet
11  
12  [working-directory: 'tests/dotnet']
13  test-dotnet:
14    dotnet test