17 releases (10 stable)

new 3.3.0 Nov 19, 2024
3.1.0 Oct 30, 2024
2.0.0 Sep 13, 2024
1.2.0 Sep 4, 2024
0.0.2-test Jul 12, 2024

#918 in Magic Beans

Download history 357/week @ 2024-07-30 1437/week @ 2024-08-06 897/week @ 2024-08-13 830/week @ 2024-08-20 1804/week @ 2024-08-27 1193/week @ 2024-09-03 1213/week @ 2024-09-10 1200/week @ 2024-09-17 1940/week @ 2024-09-24 2679/week @ 2024-10-01 2325/week @ 2024-10-08 1998/week @ 2024-10-15 1752/week @ 2024-10-22 1650/week @ 2024-10-29 2604/week @ 2024-11-05 1379/week @ 2024-11-12

7,695 downloads per month
Used in 2 crates

MIT/Apache

25KB
413 lines

sp1-build

Lightweight crate used to build SP1 programs. Internal crate that is exposed to users via sp1-cli.

Exposes build_program, which builds an SP1 program in the local environment or in a docker container with the specified parameters from BuildArgs.

Usage

use sp1_build::build_program;

build_program(&BuildArgs::default(), Some(program_dir));

Potential Issues

If you attempt to build a program with Docker that depends on a local crate, and the crate is not in the current workspace, you may run into issues with the docker build not being able to find the crate, as only the workspace root is mounted.

error: failed to load manifest for dependency `...`

To fix this, you can either:

  1. Move the program into the workspace that contains the crate.
  2. Build the crate locally instead.

Dependencies

~3–11MB
~125K SLoC