-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (75 loc) · 2.03 KB
/
Cargo.toml
File metadata and controls
85 lines (75 loc) · 2.03 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
79
80
81
82
83
84
85
[workspace]
package.version = "0.5.0-pre95"
package.repository = "https://github.com/CertainLach/jrsonnet"
members = ["crates/*", "bindings/jsonnet", "cmds/*", "tests", "xtask"]
default-members = ["cmds/jrsonnet"]
resolver = "2"
[workspace.dependencies]
jrsonnet-evaluator = { path = "./crates/jrsonnet-evaluator", version = "0.5.0-pre95" }
jrsonnet-macros = { path = "./crates/jrsonnet-macros", version = "0.5.0-pre95" }
jrsonnet-parser = { path = "./crates/jrsonnet-parser", version = "0.5.0-pre95" }
jrsonnet-rowan-parser = { path = "./crates/jrsonnet-rowan-parser", version = "0.5.0-pre95" }
jrsonnet-interner = { path = "./crates/jrsonnet-interner", version = "0.5.0-pre95" }
jrsonnet-stdlib = { path = "./crates/jrsonnet-stdlib", version = "0.5.0-pre95" }
jrsonnet-cli = { path = "./crates/jrsonnet-cli", version = "0.5.0-pre95" }
jrsonnet-types = { path = "./crates/jrsonnet-types", version = "0.5.0-pre95" }
jrsonnet-gcmodule = "0.3.6"
ass-stroke = { git = "https://github.com/CertainLach/ass-stroke", version = "0.1.0" }
serde = "1.0.190"
serde_json = "1.0.107"
serde_yaml_with_quirks = "0.8.24"
anyhow = "1.0.48"
thiserror = "1.0"
mimallocator = "0.1.3"
indoc = "2.0"
dprint-core = "0.63.2"
insta = "1.15"
tempfile = "3.8"
pathdiff = "0.2.1"
hashbrown = "0.14.2"
static_assertions = "1.1"
rustc-hash = "1.1"
bincode = "1.3"
annotate-snippets = "0.9.1"
num-bigint = "0.4.3"
derivative = "2.2.0"
strsim = "0.10.0"
structdump = "0.2.0"
proc-macro2 = "1.0"
quote = "1.0"
syn = "2.0"
peg = "0.8.2"
drop_bomb = "0.1.5"
logos = "0.12.0"
miette = "5.5.0"
rowan = "0.15"
text-size = "1.1"
md5 = "0.7.0"
sha1 = "0.10.5"
sha2 = "0.10.6"
sha3 = "0.10.8"
base64 = "0.21.0"
indexmap = "2.0.2"
itertools = "0.11.0"
ungrammar = "1.16.1"
xshell = "0.2.2"
clap = "4.4"
clap_complete = "4.4"
lsp-server = "0.7.4"
lsp-types = "0.94.1"
regex = "1.8.4"
lru = "0.10.0"
#[profile.test]
#opt-level = 1
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = 0
panic = "abort"
strip = true
[profile.releasedebug]
inherits = "release"
debug = 2
panic = "unwind"
strip = false