forked from software-mansion/cairo-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (35 loc) · 1.42 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
[workspace]
resolver = "2"
members = [
"crates/cairo-lint-cli",
"crates/cairo-lint-core",
"crates/cairo-lint-dev",
"crates/cairo-lint-test-utils",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
repository = "https://github.com/keep-starknet-strange/cairo-lint"
license = "Apache-2.0"
license-file = "LICENSE"
[workspace.dependencies]
cairo-lang-compiler = { git = "https://github.com/starkware-libs/cairo", tag = "v2.8.2" }
cairo-lang-utils = { git = "https://github.com/starkware-libs/cairo", tag = "v2.8.2" }
cairo-lang-semantic = { git = "https://github.com/starkware-libs/cairo", tag = "v2.8.2" }
cairo-lang-filesystem = { git = "https://github.com/starkware-libs/cairo", tag = "v2.8.2" }
cairo-lang-diagnostics = { git = "https://github.com/starkware-libs/cairo", tag = "v2.8.2" }
cairo-lang-test-plugin = { git = "https://github.com/starkware-libs/cairo", tag = "v2.8.2" }
cairo-lang-syntax = { git = "https://github.com/starkware-libs/cairo", tag = "v2.8.2" }
cairo-lang-defs = { git = "https://github.com/starkware-libs/cairo", tag = "v2.8.2" }
cairo-lang-starknet = { git = "https://github.com/starkware-libs/cairo", tag = "v2.8.2" }
cairo-lang-test-utils = { git = "https://github.com/starkware-libs/cairo", tag = "v2.8.2" }
test-case = "3.0"
pretty_assertions = "1.4.0"
ctor = "0.2.8"
paste = "1.0.15"
itertools = "0.13.0"
log = "0.4.22"
clap = "4.5.16"
anyhow = "1.0.86"
smol_str = "0.2.2"
annotate-snippets = "0.11.4"