-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathCargo.toml
74 lines (69 loc) · 1.95 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "starlark"
edition = "2021"
version = "0.9.0-pre"
license = "Apache-2.0"
description = "An implementation of the Starlark language in Rust."
documentation = "https://docs.rs/starlark"
repository = "https://github.com/facebookexperimental/starlark-rust"
authors = [
"Damien Martin-Guillerez <[email protected]>",
"Stepan Koltsov <[email protected]>",
"Facebook"
]
build = "build.rs"
keywords = ["starlark", "skylark", "bazel", "language", "interpreter"]
categories = ["parser-implementations", "development-tools"]
[build-dependencies]
lalrpop = "0.19.7"
[dependencies]
annotate-snippets = { version = "0.9.0", features = ["color"] }
anyhow = "1.0.56"
derivative = "2.2"
derive_more = "0.99"
erased-serde = "0.3.20"
lalrpop-util = "0.19.7"
itertools = "0.10"
once_cell = "1.8"
bumpalo = "3.8"
paste = "1.0"
either = "1.6.1"
static_assertions = "1.1.0"
memoffset = "0.6.4"
thiserror = "1.0.30"
bazel = { version = "0.1.0", path = "../bazel" }
starlark_derive = { version = "0.9.0-pre", path = "../starlark_derive" }
starlark_map = { version = "0.9.0-pre", path = "../starlark_map" }
gazebo.version = "0.8.0"
gazebo.features = ["str_pattern_extensions"]
# @oss-disable: gazebo.path = "../../gazebo/gazebo"
gazebo_lint.version = "0.1"
gazebo_lint.optional = true
# @oss-disable: gazebo_lint.path = "../../gazebo_lint/gazebo_lint"
structopt = "0.3.23"
walkdir = "2.3"
serde = { version = "1.0", features = ["derive"] }
logos = "0.12"
serde_json = "1.0"
rustyline = "9.1"
maplit = "1.0.2"
lsp-server = "0.5"
lsp-types = "0.93.0"
memchr = "2.4.1"
debugserver-types = "0.5.0"
hashbrown = { version = "0.11.2", features = ["raw"] }
textwrap = "0.14.2"
fancy-regex = "0.10.0"
regex = "1.5.4"
strsim = "0.10.0"
argfile = "0.1.0"
num-bigint = "0.4.3"
num-traits = "0.2"
inventory = "0.1.10"
[dev-dependencies]
rand = { version = "0.8.4", features = ["small_rng"] }
[features]
# @oss-disable: default = ["gazebo_lint"]
[[bin]]
name = "starlark"
path = "bin/main.rs"