-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (52 loc) · 1.62 KB
/
Cargo.toml
File metadata and controls
55 lines (52 loc) · 1.62 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
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.lints.clippy]
pedantic = "deny"
[workspace.package]
version = "0.0.27"
edition = "2024"
rust-version = "1.93"
homepage = "https://github.com/thejchap/tryke"
documentation = "https://github.com/thejchap/tryke"
repository = "https://github.com/thejchap/tryke"
authors = ["Justin Chapman <commonmodestudio@gmail.com>"]
license = "MIT"
[workspace.dependencies]
async-channel = "2"
salsa = "0.26"
ignore = "0.4"
ruff_python_ast = { git = "https://github.com/astral-sh/ruff", tag = "0.15.12" }
ruff_python_parser = { git = "https://github.com/astral-sh/ruff", tag = "0.15.12" }
ruff_source_file = { git = "https://github.com/astral-sh/ruff", tag = "0.15.12" }
ruff_text_size = { git = "https://github.com/astral-sh/ruff", tag = "0.15.12" }
rayon = "1"
miette = { version = "7", features = ["fancy", "syntect-highlighter"] }
owo-colors = { version = "4", features = ["supports-color"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rmp-serde = "1"
tokio = { version = "1", features = [
"rt-multi-thread",
"net",
"io-util",
"sync",
"macros",
"time",
"process",
] }
tokio-stream = "0.1"
notify = "6"
notify-debouncer-mini = "0.4"
toml = "1.0"
ctrlc = "3"
console = "0.15"
indicatif = "0.18"
tryke = { path = "crates/tryke" }
tryke_config = { path = "crates/tryke_config" }
tryke_discovery = { path = "crates/tryke_discovery" }
tryke_reporter = { path = "crates/tryke_reporter" }
tryke_runner = { path = "crates/tryke_runner" }
tryke_server = { path = "crates/tryke_server" }
tryke_testing = { path = "crates/tryke_testing" }
tryke_types = { path = "crates/tryke_types" }