-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 822 Bytes
/
Cargo.toml
File metadata and controls
31 lines (29 loc) · 822 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
[package]
name = "refac"
version = "0.1.2"
edition = "2021"
description = """
Transform some text given a generic natural language prompt.
"""
license = "MIT OR Apache-2.0"
readme = "README.md"
categories = ["command-line-utilities", "text-processing", "text-editors"]
repository = "https://github.com/bddap/refac"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.69"
clap = { version = "4.1.8", features = ["derive"] }
itertools = "0.10.5"
reqwest = { version = "0.13", default-features = false, features = [
"rustls",
"blocking",
"json",
] }
rpassword = "7.2.0"
serde = { version = "1.0.154", features = ["derive"] }
serde_json = "1.0.94"
similar = "2.2.1"
toml = "0.7.3"
tracing = "0.1.37"
tracing-subscriber = "0.3.20"
xdg = "2.4.1"