-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 861 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (30 loc) · 861 Bytes
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
[package]
name = "codemod-cli"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
readme.workspace = true
keywords.workspace = true
categories.workspace = true
description = "CLI interface for codemod-pilot — transform your codebase by example"
[[bin]]
name = "codemod-pilot"
path = "src/main.rs"
[dependencies]
codemod-core = { path = "../codemod-core", version = "0.1.0" }
codemod-languages = { path = "../codemod-languages", version = "0.1.0" }
clap.workspace = true
colored.workspace = true
similar.workspace = true
indicatif.workspace = true
dialoguer.workspace = true
anyhow.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_yaml.workspace = true
log.workspace = true
env_logger.workspace = true
chrono.workspace = true