-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (23 loc) · 1.17 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
[package]
name = "pyapp"
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
# rustyline = { path = "../rustyline", features = ["custom-bindings"]}
rustyline = { git = "https://github.com/zao111222333/rustyline.git", branch = "highlight", features = ["custom-bindings"]}
# rustyline = { git = "https://github.com/gwenn/rustyline.git", branch = "highlight", features = ["custom-bindings", "derive", "split-highlight", "anstyle"]}
# ruff_python_parser = { path = "../ruff/crates/ruff_python_parser" }
# ruff_python_parser = { git = "https://github.com/zao111222333/ruff.git" }
# ruff_python_ast = { git = "https://github.com/zao111222333/ruff.git" }
ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git" }
ruff_python_ast = { git = "https://github.com/astral-sh/ruff.git" }
ruff_text_size = { git = "https://github.com/astral-sh/ruff.git" }
[dependencies]
thiserror = "1.0"
pyo3 = { version = "0.22.0", features = ["experimental-inspect"] }
kdam = { version = "0.5.2", features = ["rich", "spinner"] }
rustyline = { workspace = true }
ruff_python_parser = { workspace = true }
ruff_python_ast = { workspace = true }
ruff_text_size = { workspace = true }
anstyle = "1.0.8"