Crates.io | starlark_bin |
lib.rs | starlark_bin |
version | 0.12.0 |
source | src |
created_at | 2023-10-17 12:45:24.760297 |
updated_at | 2024-02-09 16:44:52.272894 |
description | starlark binary |
homepage | |
repository | https://github.com/facebookexperimental/starlark-rust |
max_upload_size | |
id | 1005781 |
size | 156,716 |
There are several copies of this repo on GitHub, facebookexperimental/starlark-rust is the canonical one.
This project provides a Rust implementation of the Starlark language. Starlark (formerly codenamed Skylark) is a deterministic language inspired by Python3, used for configuration in the build systems Bazel, Buck and Buck2, of which Buck2 depends on this library. This project was originally developed in this repo, which contains a more extensive history.
There are at least three implementations of Starlark, one in Java, one in Go, and this one in Rust. We mostly follow the Starlark standard. If you are interested in trying out Rust Starlark, you can clone this repo and run:
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
$ cargo run
$> 1+2
3
This project was started by Damien Martin-Guillerez. Version 0.4.0 of this library changed ownership from Google to Facebook.
Read this blog post for an overview of the library, the reasons behind Starlark, and how it might fit in to your project. There is also a 2 minute introductory video.
This project features:
Send
/Sync
, while non-frozen
values aren't.This project also has three non-goals:
There are six components:
starlark_derive
, a proc-macro crate that defines the necessary macros for
Starlark. This library is a dependency of starlark
the library, which
reexports all the relevant pieces, and should not be used directly.starlark_map
, a library with memory-efficient ordered/unordered maps/sets
and various other data structures useful in Starlark.starlark_syntax
, a library with the AST of Starlark and parsing functions.
Only use if you want to manipulate the AST directly.starlark
the main library, with evaluator, standard library, debugger
support and lots of other pieces. Projects wishing to embed Starlark in their
environment (with additional types, library functions and features) will make
use of this library. This library reexports the relevant pieces of
starlark_derive
, starlark_map
and most of starlark_syntax
.starlark_lsp
, a library providing an
LSP.starlark_bin
the binary, which provides interactive evaluation, IDE features
and linter, exposed through a command line. Useful if you want to use vanilla
Starlark (but if you do, consider Python3 instead) or as a test-bed for
experimenting. Most projects will end up implementing some of this
functionality themselves over the starlark
and starlark_lsp
libraries,
incorporating their specific extra types etc.In particular the starlark_bin
binary can be effectively used as a linter.
But for the REPL, evaluator and IDE features the starlark_bin
binary is only
aware of standard Starlark. Most Starlark embeddings supply extra functions and
data types to work with domain-specific concerns, and the lack of these bindings
will cause the REPL/evaluator to fail if they are used, and will give a subpar
IDE experience. In most cases you should write your own binary depending on the
starlark
library, integrating your domain-specific pieces, and then using the
bundled LSP functions to produce your own IDE/REPL/evaluator on top of those.
You should still be able to use the VS Code extension.
In this section we outline where we don't comply with the Starlark spec.
for
.CHANGELOG.md
with the changes since the last release.
This link
can help (update to compare against the last release).Cargo.toml
files. Bump them by 0.0.1
if there are no incompatible changes, or 0.1.0 if there are. Bump the
dependency in starlark
to point at the latest starlark_derive
version.CHANGELOG.md
, LICENSE
and README.md
into each
subdirectory.cargo publish --allow-dirty --dry-run
, then without the --dry-run
, in
each of the component directories in the order above.v0.X.Y
, using the starlark
version as the name.Starlark Rust is Apache License, Version 2.0 licensed, as found in the LICENSE file.