Enter the query into the form above.
API method:
GET /api/symbols?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Convert a DESCRIPTION string into an alist.
Given LOCKFILE (default to "Cargo.lock" in current directory), return a source list imported from it, to be used as package inputs. This procedure can be used for adding a manifest file within the source tree of a Rust application.
Return the crate name of PACKAGE.
Search in FILE for a top-level definition of Cargo inputs. Return the location if found, or #f otherwise.
Fetch the metadata for CRATE-NAME from crates.io, and return the `package' s-expression corresponding to that package, or #f on failure. When VERSION is specified, convert it into a semver range and attempt to fetch the latest version matching this semver range; otherwise fetch the latest version of CRATE-NAME.
Given LOCKFILE, a 'Cargo.lock' file, import its content as source expressions. Return a source list and a Cargo inputs entry for PACKAGE-NAME referencing all imported sources.
Search in FILE for a top-level definition of Cargo inputs. If found, return its entries excluding EXCLUDE, or an empty list otherwise.
Return the CHICKEN egg name of the Guix CHICKEN PACKAGE.
Import a CHICKEN egg called NAME from either the given .egg FILE, or from the latest NAME metadata downloaded from the official repository if FILE is #f. Return a <package> record or #f on failure. If VERSION is specified, import the particular version from the egg repository.
SOURCE is a ``file-like'' object containing the source code corresponding to the egg. If SOURCE is not specified, the latest tarball for egg NAME will be downloaded.
Specifying the SOURCE argument is mainly useful for developing a CHICKEN egg locally. Note that if FILE and SOURCE are specified, recursive import will not work.