-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
57 lines (54 loc) · 1.71 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
[package]
name = "f0bot"
version = "0.1.0"
edition = "2021"
authors = ["tar-xzf <[email protected]>"]
license = "Unlicense OR MIT"
[dependencies]
anyhow = { version = "1.0.75", features = ["backtrace"] }
argh = "0.1.12"
async-openai = "0.14.3"
bytes = "1.7.1"
chrono = { version = "0.4.31", features = ["serde"] }
cron = "0.12.1"
diesel = { version = "2.1.1", features = ["chrono", "sqlite", "serde_json"] }
diesel-derive-newtype = "2.1.0"
dptree = "0.3.0"
futures = "0.3.28"
git-version = "0.3.5"
gql_client = "1.0.7"
hyper = { version = "0.14.27", features = ["server"] }
itertools = "0.11.0"
lazy_static = "1.4.0"
ldap-rs = { version = "0.4.3", features = [
"tls-rustls",
], default-features = false }
log = "0.4.20"
macaddr = { version = "1.0.1", features = ["serde_std"] }
macro_rules_attribute = "0.2.0"
metrics = "0.21.1"
metrics-exporter-prometheus = { version = "0.12.1", default-features = false }
nom = "7.1.3"
passwords = "3.1.16"
pretty_env_logger = "0.5.0"
regex = { version = "1.10.2", default-features = false }
reqwest = "0.11.20"
salvo = { version = "0.58.2", default-features = false, features = ["http1"] }
salvo-oapi = { version = "0.58.2", features = ["chrono"] }
serde = "1.0.188"
serde_json = "1.0.107"
serde_yaml = "0.9.25"
sha-crypt = "0.5.0"
similar = "2.2.1"
structstruck = "0.4.1"
tap = "1.0.1"
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros"] }
tokio-util = "0.7.9"
webpage = { version = "2.0.0", default-features = false }
[dependencies.teloxide]
# TODO: switch back to upstream once merged and released
git = "https://github.com/tar-xzf/teloxide"
rev = "4fe1a083be74bb37956ee8456a6a1dcf0decc614"
features = ["macros"]
[dev-dependencies]
similar-asserts = { version = "1.5.0", features = ["serde"] }