-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (49 loc) · 1.61 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
[package]
name = "synsert"
version = "0.1.1"
edition = "2021"
description = "A primitive for writing structural search and replace programs for rust"
license = "MIT OR Apache-2.0"
repository = "https://github.com/aatifsyed/synsert"
homepage = "https://crates.io/crates/synsert"
documentation = "https://docs.rs/synsert"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
console = { version = "0.15.7", optional = true }
proc-macro2 = { version = "1.0.68", default-features = false, features = [
"span-locations",
] }
rangemap = "1.4.0"
ropey = "1.6.0"
rustyline = "14.0.0"
syn = { version = "2.0.37", default-features = false, features = [
"printing",
"parsing",
] }
similar = { version = "2.2.1", features = [
"text",
"inline",
"bytes",
], optional = true }
dialoguer = { version = "0.11.0", default-features = false, optional = true }
[features]
harness = ["dep:console", "dep:similar", "dep:dialoguer"]
[dev-dependencies]
clap = { version = "4.4.6", features = ["derive"] }
console = "0.15.7"
derive-quote-to-tokens = "0.1.1"
dialoguer = { version = "0.11.0", default-features = false }
indoc = "2.0.4"
itertools = "0.12.1"
pretty_assertions = "1.4.0"
prettyplease = "0.2.17"
quote = { version = "1.0.35", default-features = false }
rustc_parse_format = { git = "https://github.com/rust-lang/rust", default-features = false }
similar = { version = "2.2.1", features = ["text", "inline", "bytes"] }
syn = { version = "2.0.37", default-features = false, features = [
"full",
"extra-traits",
"visit",
"clone-impls",
] }
syn-miette = "0.3.0"