-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
54 lines (49 loc) · 1.52 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
[package]
name = "mariadb-mysql-kbs"
version = "1.3.1-rc1"
authors = ["William Desportes <[email protected]>"]
edition = "2021"
rust-version = "1.74" # MSRV
description = "An index of the MariaDB and MySQL Knowledge bases"
homepage = "https://github.com/williamdes/mariadb-mysql-kbs/tree/v1.3.0#readme"
repository = "https://github.com/williamdes/mariadb-mysql-kbs"
readme = "README.md"
keywords = ["mariadb", "mysql", "dataset", "kb", "knowledge-base"]
categories = ["command-line-utilities"]
license = "MPL-2.0"
include = [
"/src/rust/**/*.rs",
"/dist/*.json",
"/dist/*.md",
"/data/*.json",
"/Cargo.toml",
"/LICENSE",
]
[badges]
github = { repository = "mariadb-mysql-kbs", branch = "main" }
codecov = { repository = "mariadb-mysql-kbs", branch = "main", service = "github" }
is-it-maintained-issue-resolution = { repository = "mariadb-mysql-kbs" }
is-it-maintained-open-issues = { repository = "mariadb-mysql-kbs" }
maintenance = { status = "passively-maintained" }
[lib]
name = "mariadb_mysql_kbs"
path = "src/rust/lib.rs"
test = true
doctest = true
bench = true
doc = true
[[bin]]
name = "mariadb-mysql-kbs"
path = "src/rust/mariadb-mysql-kbs.rs"
[dependencies]
clap = { version = "4.0.27", features = ["cargo", "derive"] }
futures = "0.3.25"
tokio = { version = "1.22.0", features = ["macros", "rt-multi-thread"] }
regex = "1.7.0"
ureq = { version = "2.9.1" }
select = "0.5.0"
serde_json = "1.0.89"
serde = { version = "1.0.147", features = ["derive"] }
serde_repr = "0.1.9"
[dev-dependencies]
pretty_assertions = "1.3.0"