-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
38 lines (33 loc) · 972 Bytes
/
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
[package]
name = "cargo-sphinx"
version = "1.3.1"
authors = ["Ning Sun <[email protected]>", "Pascal Hartig <[email protected]>", "Daithi O Crualaoich <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Cargo subcommand for building and publishing Sphinx documentation to GitHub Pages."
edition = "2018"
homepage = "https://woofwoofinc.github.io/cargo-sphinx"
documentation = "https://docs.rs/crate/cargo-sphinx"
repository = "https://github.com/woofwoofinc/cargo-sphinx"
readme = "README.md"
keywords = ["cargo", "documentation", "github", "sphinx"]
include = [
"src/*",
"AUTHORS",
"Cargo.lock",
"Cargo.toml",
"LICENSE-*",
"README.md",
]
[package.metadata.sphinx]
docs-path = "docs"
commit-message = "(cargo-sphinx) Generate docs."
sign-commit = false
push-remote = "origin"
push-branch = "gh-pages"
[dependencies]
toml = "0.5.7"
failure = "0.1.8"
failure_derive = "0.1.8"
clap = "2.33.3"
cargo = "0.42.0"
termcolor = "1.1.2"