Rust dependencies

Site admins can sync Rust dependencies from any Cargo repository, including crates.io or an internal Artifactory, to their Sourcegraph instance so that users can search and navigate their dependencies.

To add Rust dependencies to Sourcegraph you need to setup a Rust dependencies code host:

  1. As site admin: go to Site admin > Global settings and enable the experimental feature by adding: {"experimentalFeatures": {"rustPackages": "enabled"} }
  2. As site admin: go to Site admin > Manage code hosts
  3. Select Rust Dependencies.
  4. Configure the connection by following the instructions above the text field. Additional fields can be added using Cmd/Ctrl+Space for auto-completion. See the configuration documentation below.
  5. Press Add repositories.

Repository syncing

There are two ways to sync Rust dependency repositories.

  • Indexing (recommended): run scip-rust against your Rust codebase and upload the generated index to Sourcegraph using the src-cli command src code-intel upload. This is usually setup to run in a CI pipeline. Sourcegraph automatically synchronizes Rust dependency repositories based on the dependencies that are discovered by scip-rust.
  • Code host configuration: manually list dependencies in the "dependencies" section of the JSON configuration when creating the Rust dependency code host. This method can be useful to verify that the credentials are picked up correctly without having to upload an index.

Credentials

The "repository" field in the configuration section is automatically redacted and can optionally include the username and password of an internal Artifactory Cargo repository.

Rate limiting

By default, requests to the Cargo repository is 8 request per second.

To manually set the value, add the following to your code host configuration:

"rateLimit": {
  "enabled": true,
  "requestsPerHour": 600
}

where the requestsPerHour field is set based on your requirements.

Not recommended: Rate-limiting can be turned off entirely as well. This increases the risk of overloading the code host.

"rateLimit": {
  "enabled": false
}

Configuration

Rust dependencies code host connections support the following configuration options, which are specified in the JSON editor in the site admin "Manage code hosts" area.

admin/external_service/rust-packages.schema.json

{
	// An array of strings specifying Rust packages to mirror in Sourcegraph.
	"dependencies": null,
	// Other example values:
	// - ["[email protected]"]

	// Rate limit applied when making background API requests to the configured Rust repository APIs.
	"rateLimit": {
		"enabled": true,
		"requestsPerHour": 3600
	}
}