-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
37 lines (34 loc) · 1.09 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
[workspace]
members = ["codegen", "octocrate", "core", "types", "webhooks"]
resolver = "2"
[workspace.package]
edition = "2021"
authors = ["[email protected]"]
license = "MIT"
description = "A comprehensive GitHub REST API library based on Rust."
readme = "./README.md"
homepage = "https://github.com/panghu-huang/octocrate"
repository = "https://github.com/panghu-huang/octocrate"
keywords = ["github", "api", "octocrate", "github-api", "rest-api"]
include = ["**/*.rs", "Cargo.toml"]
categories = ["web-programming::http-client", "api-bindings"]
[workspace.dependencies]
regex = "1.10.4"
reqwest = { version = "0.12.12", default-features = false }
serde = { version = "1.0.197" }
serde_json = "1.0.115"
tokio = { version = "1.32.0" }
tokio-util = "0.7.13"
typed-builder = "0.18"
thiserror = "1.0.44"
chrono = "0.4.37"
jsonwebtoken = "9.3.0"
dotenv = "0.15.0"
handlebars = "5.1.2"
indicatif = "0.17.8"
indexmap = "2"
url = "2"
# internal
octocrate = { path = "octocrate", version = "2.2.0" }
octocrate-core = { path = "core", version = "0.1.9" }
octocrate-types = { path = "types", version = "2.0.2" }