purl
No description available.
File Explorer
Download Latest Version (.zip)- ci.yml
- release.yml
- dependabot.yml
- get_token_symbol_tests.rs
- balance_command.rs
- cli.rs
- colors.rs
- config_commands.rs
- config_utils.rs
- errors.rs
- exit_codes.rs
- help_topics.rs
- hyperlink.rs
- inspect_command.rs
- main.rs
- network_commands.rs
- output.rs
- payment.rs
- request.rs
- table.rs
- wallet_commands.rs
- mod.rs
- balance_command_tests.rs
- cli_tests.rs
- config_command_tests.rs
- constraint_tests.rs
- wallet_command_tests.rs
- Cargo.toml
- encrypt.rs
- mod.rs
- store.rs
- challenge.rs
- mod.rs
- policy.rs
- protocol.rs
- settlement.rs
- mod.rs
- registry.rs
- settlement.rs
- types.rs
- evm.rs
- mod.rs
- solana.rs
- tempo.rs
- mod.rs
- protocol.rs
- v1.rs
- v2.rs
- client.rs
- config.rs
- constants.rs
- crypto.rs
- currency.rs
- error.rs
- http.rs
- lib.rs
- negotiator.rs
- network.rs
- payment_provider.rs
- permissions.rs
- signer.rs
- utils.rs
- config_tests.rs
- http_client_tests.rs
- network_tests.rs
- payment_provider_tests.rs
- x402_tests.rs
- Cargo.toml
- SKILL.md
- .gitignore
- AGENTS.md
- Cargo.lock
- Cargo.toml
- install.sh
- LICENSE
- Makefile
- purl.toml.example
- README.md
# Installation Guide
git clone https://github.com/stripe/purl
Downloads the entire project code from GitHub to your computer.
cd purl
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Homebrew A package manager for macOS/Linux.
- Rust (rustup) Rust is required to use cargo.
brew install stripe/purl/purl
Installs the pre-built package via Homebrew โ no source build required.
cargo install --locked --path cli
Builds and installs the package published on crates.io โ no need to clone the repo yourself.
Pulled directly from this repo's README.
3. Rust
Medium- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo install --locked --path cli
Builds and installs the package published on crates.io โ no need to clone the repo yourself.
Pulled directly from this repo's README.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make build # Build
Compiles the code based on the generated build configuration to produce an executable.
make test # Run tests
Compiles the code based on the generated build configuration to produce an executable.
make release # Build release binary
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
