-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (73 loc) · 2.55 KB
/
Cargo.toml
File metadata and controls
78 lines (73 loc) · 2.55 KB
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
75
76
77
78
[workspace]
members = [
"allocative/allocative",
"allocative/allocative_derive",
"gazebo/gazebo",
"gazebo/display_container",
"gazebo/dupe",
"gazebo/strong_hash",
"gazebo/strong_hash_derive",
"pagable",
"pagable_derive",
"starlark",
"starlark_bin",
"starlark_derive",
"starlark_js_example",
"starlark_lsp",
"starlark_map",
"starlark_syntax",
]
resolver = "2"
[workspace.package]
license = "Apache-2.0"
repository = "https://github.com/facebook/starlark-rust"
[workspace.dependencies]
allocative = { version = "0.3.4", path = "allocative/allocative" }
allocative_derive = { version = "0.3.3", path = "allocative/allocative_derive" }
cmp_any = { version = "0.8.1", path = "gazebo/cmp_any" }
display_container = { version = "0.9.0", path = "gazebo/display_container" }
dupe = { version = "0.9.1", path = "gazebo/dupe" }
gazebo = { path = "gazebo/gazebo" }
strong_hash = { path = "gazebo/strong_hash" }
strong_hash_derive = { path = "gazebo/strong_hash_derive" }
starlark_lsp = { version = "0.13", path = "starlark_lsp" }
starlark_map = { version = "0.13", path = "starlark_map" }
starlark_syntax = { version = "0.13", path = "starlark_syntax" }
anyhow = "1.0.65"
ctor = "0.1.26"
derivative = "2.2"
derive_more = { version = "1.0.0", features = ["full"] }
either = "1.8"
equivalent = "1.0.0"
erased-serde = "0.3.20"
indenter = "0.3.3"
inventory = "0.3.8"
memchr = "2.4.1"
num-bigint = { version = "0.4.3", features = ["serde"] }
proc-macro2 = "1.0"
quote = "1.0.3"
ref-cast = "1.0.0"
relative-path = { version = "1.7.0", features = ["serde"] }
syn = "2"
pagable = { path = "pagable" }
pagable_derive = { path = "pagable_derive" }
# dependencies of pagable
async-trait = "0.1.24"
blake3 = { version = "1.8.2", features = ["default", "rayon", "std", "traits-preview"] }
bytemuck = { version = "1.24", features = ["const_zeroed", "derive", "min_const_generics", "must_cast", "nightly_stdsimd"] }
dashmap = "6.1.0"
indexmap = { version = "2.12.1", features = ["serde"] }
once_cell = "1.8"
parking_lot = { version = "0.12.1", features = ["send_guard"] }
postcard = { version = "1.0.8", features = ["use-crc", "use-std"] }
sequence_trie = "0.3.6"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = { version = "1.0.48", features = ["raw_value"] }
sled = "0.34"
smallvec = "1.10"
sorted_vector_map.git = "https://github.com/facebookexperimental/rust-shed"
sorted_vector_map.version = "0.2"
static_assertions = "1.1.0"
take_mut = "0.2.2"
tokio = { version = "1.25.0", features = ["full", "test-util", "tracing"] }
triomphe = "0.1.11"