-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
29 lines (25 loc) · 1.24 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
[package]
name = "thoth"
version = "0.12.13"
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
edition = "2021"
license = "Apache-2.0"
description = "GraphQL API for bibliographic data"
repository = "https://github.com/thoth-pub/thoth"
readme = "README.md"
[badges]
travis-ci = { repository = "openbookpublishers/thoth" }
maintenance = { status = "actively-developed" }
[workspace]
members = ["thoth-api", "thoth-api-server", "thoth-app", "thoth-app-server", "thoth-client", "thoth-errors", "thoth-export-server"]
[dependencies]
thoth-api = { version = "=0.12.13", path = "thoth-api", features = ["backend"] }
thoth-api-server = { version = "=0.12.13", path = "thoth-api-server" }
thoth-app-server = { version = "=0.12.13", path = "thoth-app-server" }
thoth-errors = { version = "=0.12.13", path = "thoth-errors" }
thoth-export-server = { version = "=0.12.13", path = "thoth-export-server" }
clap = { version = "4.5.16", features = ["cargo", "env"] }
dialoguer = { version = "0.11.0", features = ["password"] }
dotenv = "0.15.0"
[dev-dependencies]
cargo-husky = { version = "1.5.0", default-features = false, features = ["prepush-hook", "run-cargo-check", "run-cargo-test", "run-cargo-clippy", "run-cargo-fmt"] }