-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 1.05 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
[package]
name = "thoth"
version = "1.1.0"
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
edition = "2021"
license = "Apache-2.0"
description = "GraphQL API for bibliographic data"
repository = "https://github.com/thoth-pub/thoth"
readme = "README.md"
[badges]
maintenance = { status = "actively-developed" }
[workspace]
members = ["thoth-api", "thoth-api-server", "thoth-client", "thoth-errors", "thoth-export-server"]
[dependencies]
thoth-api = { version = "=1.1.0", path = "thoth-api", features = ["backend"] }
thoth-api-server = { version = "=1.1.0", path = "thoth-api-server" }
thoth-errors = { version = "=1.1.0", path = "thoth-errors" }
thoth-export-server = { version = "=1.1.0", path = "thoth-export-server" }
base64 = "0.22.1"
clap = { version = "4.5.32", features = ["cargo", "env"] }
dialoguer = { version = "0.11.0", features = ["password"] }
dotenv = "0.15.0"
lazy_static = "1.5.0"
tokio = { version = "1.44.1", features = ["rt", "rt-multi-thread", "macros"] }
zitadel = { version = "5.7.6", features = ["api", "interceptors"]}