draco_decoder 0.0.17

a draco decoder on rust (wip)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "author": "https://github.com/jiangheng90/",
    "scripts": {
        "clippy": "cargo clippy --all-targets --all-features",
        "test:native": "cargo test --workspace --all-features",
        "test:wasm": "wasm-pack test --safari --headless --workspace --all-features",
        "test": "npm run test:native && npm run test:wasm",
        "build:wasm-example": "sh tools/wasm_build.sh",
        "build": "cd third_party/draco_decoder_js && npm run build && cargo build",
        "package": "npm run build && cargo package --allow-dirty --no-verify",
        "publish": "npm run package && cargo publish --allow-dirty --no-verify",
        "perf": "sh tools/perf.sh"
    }
}