-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathCargo.toml
45 lines (40 loc) · 1.11 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
[package]
name = "assistant"
version = "0.1.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
]
license = "MIT"
readme = "Readme.md"
documentation = "https://docs.rs/assistant"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/assistant"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/assistant"
description = """
Assist AI in writing code.
"""
categories = [ "algorithms", "development-tools" ]
keywords = [ "fundamental", "general-purpose" ]
[lints]
workspace = true
[package.metadata.docs.rs]
features = [ "full" ]
all-features = false
[features]
default = [ "enabled" ]
full = [ "enabled" ]
enabled = [
"former/enabled",
"format_tools/enabled",
"reflect_tools/enabled",
]
[dependencies]
# xxx : qqq : optimze features
former = { workspace = true, features = [ "full" ] }
format_tools = { workspace = true, features = [ "full" ] }
reflect_tools = { workspace = true, features = [ "full" ] }
openai-api-rs = { version = "4.0.9" }
tokio = { version = "1", features = ["full"] }
dotenv = "0.15"
[dev-dependencies]
test_tools = { workspace = true }