-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
59 lines (53 loc) · 1.54 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
54
55
56
57
58
59
[package]
name = "smartcat"
version = "2.2.0"
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"
env_logger = "0"
reqwest = { version = "0", default-features = false, features = ["http2", "json", "blocking", "multipart", "rustls-tls"] }
[dev-dependencies]
tempfile = "3"
serial_test = "2"
[profile.release]
opt-level = 3
debug = "none"
strip = "symbols"
debug-assertions = false
overflow-checks = false
lto = "fat"
panic = "abort"
incremental = false
codegen-units = 1
[[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 🐈⬛
"""