-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
52 lines (48 loc) · 1.27 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
[package]
name = "kovi"
version = "0.10.1"
edition = "2021"
description = "A OneBot V11 bot plugin framework"
license = "MPL-2.0"
authors = ["Threkork <[email protected]>"]
repository = "https://github.com/Threkork/Kovi"
readme = "README_Cargo.md"
documentation = "https://threkork.github.io/kovi-doc/"
keywords = ["kovi", "onebot", "framework"]
[lib]
name = "kovi"
path = "src/lib.rs"
[dependencies]
regex = "1.10"
chrono = "0.4"
dialoguer = { version = "0.11", features = ["fuzzy-select"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
log = "0.4"
anstyle = "1"
kovi-macros = "0.4"
env_logger = { version = "0.11", default-features = false, features = [
"auto-color",
"color",
], optional = true }
tokio = { version = "1", features = ["full", "windows-sys"] }
tokio-tungstenite = "0.24"
futures-util = "0.3"
reqwest = { version = "0.12", features = ["blocking"] }
toml = "0.8"
toml_edit = "0.22"
croner = "2"
rand = "0.8"
ahash = "0.8"
parking_lot = "0.12"
[features]
default = ["logger", "native-tls"]
logger = ["env_logger"]
cqstring = []
message_sent = []
native-tls = [
"reqwest/native-tls-vendored",
"tokio-tungstenite/native-tls-vendored",
]
rustls-tls = ["reqwest/rustls-tls-native-roots", "tokio-tungstenite/rustls-tls-native-roots"]