forked from thoth-pub/thoth
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 1.15 KB
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.11.2"
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
edition = "2018"
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.11.2", path = "thoth-api", features = ["backend"] }
thoth-api-server = { version = "0.11.2", path = "thoth-api-server" }
thoth-app-server = { version = "0.11.2", path = "thoth-app-server" }
thoth-errors = { version = "0.11.2", path = "thoth-errors" }
thoth-export-server = { version = "0.11.2", path = "thoth-export-server" }
clap = "2.34.0"
dialoguer = "0.7.1"
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"] }