-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathCargo.toml
158 lines (152 loc) · 4.85 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
[workspace]
members = [
"scarb",
"scarb-metadata",
"extensions/scarb-doc",
"extensions/scarb-execute",
"extensions/scarb-prove",
"extensions/scarb-verify",
"extensions/scarb-cairo-language-server",
"extensions/scarb-cairo-run",
"extensions/scarb-cairo-test",
"plugins/cairo-lang-macro",
"plugins/cairo-lang-macro-attributes",
"plugins/cairo-lang-macro-stable",
"utils/create-output-dir",
"utils/once-map",
"utils/scarb-proc-macro-server-types",
"utils/scarb-build-metadata",
"utils/scarb-stable-hash",
"utils/scarb-test-support",
"utils/scarb-ui",
"utils/test-for-each-example",
"xtask",
]
"resolver" = "2"
[workspace.package]
version = "2.11.0"
edition = "2021"
authors = ["Software Mansion <[email protected]>"]
homepage = "https://docs.swmansion.com/scarb"
license = "MIT"
readme = "README.md"
repository = "https://github.com/software-mansion/scarb"
[workspace.dependencies]
anyhow = "1"
assert_fs = "1"
async-trait = "0.1"
axum = { version = "0.6", features = ["http2"] }
bincode = "2.0.0-rc.3"
cairo-lang-compiler = "2.11"
cairo-lang-defs = "2.11"
cairo-lang-diagnostics = "2.11"
cairo-lang-doc = "2.11"
cairo-lang-executable = "2.11"
cairo-lang-filesystem = "2.11"
cairo-lang-formatter = "2.11"
cairo-lang-lowering = "2.11"
cairo-lang-parser = "2.11"
cairo-lang-runner = "2.11"
cairo-lang-semantic = "2.11"
cairo-lang-sierra = "2.11"
cairo-lang-sierra-generator = "2.11"
cairo-lang-sierra-to-casm = "2.11"
cairo-lang-starknet = "2.11"
cairo-lang-starknet-classes = "2.11"
cairo-lang-syntax = "2.11"
cairo-lang-test-plugin = "2.11"
cairo-lang-test-runner = "2.11"
cairo-lang-utils = { version = "2.11", features = ["env_logger"] }
cairo-language-server = { git = "https://github.com/software-mansion/cairols.git", branch = "2.11" }
cairo-lint-core = "2.11"
cairo-vm = "1.0.1"
camino = { version = "1", features = ["serde1"] }
cargo_metadata = ">=0.18"
clap = { version = "4", features = ["derive", "env", "string"] }
console = "0.15"
convert_case = "0.7.1"
darling = "0.20"
dashmap = "6"
data-encoding = "2"
deno_task_shell = ">=0.13"
derive_builder = ">=0.12"
dialoguer = "0.11.0"
directories = "5"
dunce = "1"
expect-test = "1.5"
flate2 = { version = "1.1.0", default-features = false, features = ["zlib"] }
fs4 = { version = "0.7", features = ["tokio"] }
fs_extra = "1"
futures = { version = "0.3", default-features = false, features = ["std", "async-await", "executor"] }
gix = ">=0.55"
gix-path = "0.10"
glob = "0.3"
ignore = "0.4"
include_dir = "0.7"
indicatif = "0.17"
indoc = "2"
io_tee = "0.1"
itertools = "0.14"
libc = "0.2"
libloading = "0.8.6"
linkme = "0.3"
ntest = "0.9"
num-bigint = { version = "0.4", features = ["rand"] }
once_cell = "1"
pathdiff = { version = "0.2", features = ["camino"] }
petgraph = "0.7"
predicates = "3"
proc-macro2 = "1"
pubgrub = { git = "https://github.com/software-mansion-labs/pubgrub.git", branch = "dev" }
quote = "1"
ra_ap_toolchain = "0.0.218"
redb = "2.4.0"
reqwest = { version = "0.11", features = ["gzip", "brotli", "deflate", "json", "stream", "multipart"], default-features = false }
salsa = { package = "rust-analyzer-salsa", version = "0.17.0-pre.6" }
semver = { version = "1", features = ["serde"] }
semver-pubgrub = { git = "https://github.com/software-mansion-labs/semver-pubgrub.git" }
serde = { version = "1", features = ["serde_derive"] }
serde-untagged = "0.1"
serde-value = "0.7"
serde_json = { version = "1", features = ["raw_value"] }
serde_repr = "0.1"
serde_test = "1"
sha2 = "0.10"
similar-asserts = { version = "1", features = ["serde"] }
smallvec = "1"
smol_str = { version = "0.3", features = ["serde"] }
snapbox = { version = "0.4", features = ["cmd", "path"] }
starknet-types-core = "0.1"
stwo_cairo_prover = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "71a214aa5cb5b199e1da156a3672bcc99de21fc2" }
stwo-cairo-adapter = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "71a214aa5cb5b199e1da156a3672bcc99de21fc2", features = ["std"] }
syn = "2"
tar = "0.4"
target-triple = "0.1"
tempfile = "3"
test-case = "3"
thiserror = "2"
time = "0.3"
tokio = { version = "1", features = ["macros", "io-util", "process", "rt", "rt-multi-thread", "sync"] }
tokio-stream = "0.1"
toml = "0.8"
toml_edit = { version = "0.22", features = ["serde"] }
tower-http = { version = "0.4", features = ["fs"] }
tracing = "0.1"
tracing-core = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
typed-builder = ">=0.17"
url = { version = "2", features = ["serde"] }
walkdir = "2"
which = "7"
windows-sys = { version = "0.59", features = ["Win32_Foundation", "Win32_System", "Win32_System_Console"] }
xshell = "0.2"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
zip = { version = "0.6", default-features = false, features = ["deflate"] }
zstd = "0.13"
[patch.crates-io]
[profile.release]
lto = true
[profile.ci]
inherits = "test"
strip = "debuginfo"
opt-level = 3