forked from efugier/smartcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (46 loc) · 1.43 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
[package]
name = "smartcat"
version = "1.7.2"
authors = ["Emilien Fugier <[email protected]>"]
description = '''
Putting a brain behind `cat`.
CLI interface to bring language models in the Unix ecosystem 🐈⬛
'''
license = "MIT OR Apache-2.0"
edition = "2021"
homepage = "https://github.com/efugier/smartcat"
repository = "https://github.com/efugier/smartcat"
keywords = ["cli", "pipe", "cat", "ai", "chatgpt"]
categories = ["command-line-utilities", "text-processing"]
readme="README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4", features = ["derive"] }
glob = "0"
log = "0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0"
ureq = { version="2", features = ["json"] }
env_logger = "0"
# device_query = { version = "2", optional = true }
reqwest = { version = "0", features = ["json", "blocking", "multipart"] }
device_query = "2"
[dev-dependencies]
tempfile = "3"
serial_test = "2"
[[bin]]
path = "src/main.rs"
name = "sc"
[package.metadata.deb]
section = "utils"
assets = [
["target/release/sc", "usr/bin/", "755"],
["LICENSE", "usr/share/doc/smartcat/", "644"],
["CHANGELOG.md", "usr/share/doc/smartcat/CHANGELOG", "644"],
["README.md", "usr/share/doc/smartcat/README", "644"],
]
extended-description = """\
Putting a brain behind `cat`.
CLI interface to bring language models in the Unix ecosystem 🐈⬛
"""