Skip to content

Commit 13a0f1e

Browse files
committed
feat: add pro-forma libaray to allow feature documentation of gitoxide on docs.rs
1 parent d67551d commit 13a0f1e

File tree

3 files changed

+80
-27
lines changed

3 files changed

+80
-27
lines changed

Cargo.toml

Lines changed: 53 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,48 @@ doctest = false
2525
[features]
2626
default = ["max"]
2727

28+
#! ### Build Configuration
29+
#! These combine common choices of building blocks to represent typical builds.
30+
31+
## Everything, all at once.
32+
##
33+
## As fast as possible, with TUI progress, progress line rendering with auto-configuration, all transports based on their most mature implementation (HTTP), all `ein` tools, CLI colors and local-time support, JSON output, regex support for rev-specs.
34+
max = ["fast", "pretty-cli", "http-client-curl", "gitoxide-core-tools-query", "gitoxide-core-tools", "gitoxide-core-blocking-client", "prodash-render-line", "prodash-render-tui", "prodash/render-line-autoconfigure", "gix/regex" ]
35+
36+
## Like `max`, but only Rust is allowed.
37+
##
38+
## This is the most compatible build as it won't need a C compiler or C toolchains to build. It's also not the fastest as or the most feature-rich in terms of available
39+
## transports as it uses Rust's HTTP implementation.
40+
##
41+
## As fast as possible, with TUI progress, progress line rendering with auto-configuration, all transports available but less mature pure Rust HTTP implementation, all `ein` tools, CLI colors and local-time support, JSON output, regex support for rev-specs.
42+
max-pure = ["pretty-cli", "gix-features/rustsha1", "gix-features/zlib-rust-backend", "prodash-render-line", "prodash-render-tui", "gix/max-performance-safe", "gix/comfort", "http-client-reqwest", "gitoxide-core-blocking-client", "gitoxide-core-tools", "prodash/render-line-autoconfigure", "gix/regex" ]
43+
44+
## All of the good stuff, with less fanciness for smaller binaries.
45+
##
46+
## As fast as possible, progress line rendering, all transports based on their most mature implementation (HTTP), all `ein` tools, CLI colors and local-time support, JSON output.
47+
lean = ["fast", "pretty-cli", "http-client-curl", "gitoxide-core-tools-query", "gitoxide-core-tools", "gitoxide-core-blocking-client", "prodash-render-line" ]
48+
49+
## The smallest possible build, best suitable for small single-core machines.
50+
##
51+
## This build is essentially limited to local operations without any fanciness.
52+
##
53+
## Optimized for size, no parallelism thus much slower, progress line rendering.
54+
small = ["pretty-cli", "gix-features/rustsha1", "gix-features/zlib-rust-backend", "prodash-render-line", "is-terminal" ]
55+
56+
## Like lean, but uses Rusts async implementations for networking.
57+
##
58+
## This build is more of a demonstration showing how async can work with `gitoxide`, which generally is blocking. This also means that the selection of async transports
59+
## is very limited to only HTTP (without typical `git` configuration) and git over TCP like provided by the `git daemon`.
60+
##
61+
## As fast as possible, progress line rendering, less feature-ful HTTP (pure Rust) and only `git-damon` support, all `ein` tools, CLI colors and local-time support, JSON output.
62+
##
63+
## Due to async client-networking not being implemented for most transports, this one supports only the 'git+tcp' and HTTP transport.
64+
## It uses, however, a fully asynchronous networking implementation which can serve a real-world example on how to implement custom async transports.
65+
lean-async = ["fast", "pretty-cli", "gitoxide-core-tools", "gitoxide-core-tools-query", "gitoxide-core-async-client", "prodash-render-line"]
66+
67+
#! ### Building Blocks
68+
#! Typical combinations of features of our dependencies, some of which are referred to in the `gitoxide` crate's code for conditional compilation.
69+
2870
## Makes the crate execute as fast as possible by supporting parallel computation of otherwise long-running functions
2971
## as well as fast, hardware accelerated hashing, along with a faster zlib backend.
3072
## If disabled, the binary will be visibly smaller.
@@ -39,36 +81,24 @@ pretty-cli = [ "gitoxide-core/serde", "prodash/progress-tree", "prodash/progress
3981
## that appears after a short duration.
4082
prodash-render-line-crossterm = ["prodash-render-line", "prodash/render-line-crossterm", "prodash/signal-hook", "is-terminal", "crosstermion"]
4183

42-
#! ### Convenience Features
43-
#! These combine common choices of the above features to represent typical builds
44-
45-
## *fast* + *prodash-render-tui-crossterm* + *prodash-render-line-crossterm* + *http* + *gitoxide-core-tools* + *client-networking*
46-
max = ["fast", "pretty-cli", "http-client-curl", "gitoxide-core-tools-query", "gitoxide-core-tools", "gitoxide-core-blocking-client", "prodash-render-line", "prodash-render-tui", "prodash/render-line-autoconfigure", "gix/regex" ]
47-
48-
## *fast* + *prodash-render-line-crossterm* + *gitoxide-core-tools* + *client-networking*.
49-
lean = ["fast", "pretty-cli", "http-client-curl", "gitoxide-core-tools-query", "gitoxide-core-tools", "gitoxide-core-blocking-client", "prodash-render-line" ]
50-
## fast* + *prodash-render-line-crossterm* + *gitoxide-core-tools* + *client-async-networking*.
51-
## Due to async client-networking not being implemented for most transports, this one supports only the 'git' transport.
52-
## It uses, however, a fully asynchronous networking implementation which can serve a real-world example on how to implement custom async transports.
53-
lean-async = ["fast", "pretty-cli", "gitoxide-core-tools", "gitoxide-core-tools-query", "gitoxide-core-async-client", "prodash-render-line"]
54-
55-
## As small as it can possibly be, no threading, no fast sha1, line progress only, rust based zlib implementation.
56-
## no networking, local operations only.
57-
small = ["pretty-cli", "gix-features/rustsha1", "gix-features/zlib-rust-backend", "prodash-render-line", "is-terminal" ]
84+
## Progress reporting with a TUI, can then be enabled with the `--progress` flag.
85+
prodash-render-tui = ["prodash/render-tui", "prodash/render-tui-crossterm", "prodash/progress-tree", "futures-lite"]
5886

59-
## Makes the crate execute as fast as possible without pulling in C libraries, while keeping everything else minimal akin to the `small` build.
60-
max-pure = ["pretty-cli", "gix-features/rustsha1", "gix-features/zlib-rust-backend", "prodash-render-line", "prodash-render-tui", "gix/max-performance-safe", "gix/comfort", "http-client-reqwest", "gitoxide-core-blocking-client", "gitoxide-core-tools", "prodash/render-line-autoconfigure" ]
87+
## Progress reporting by visually drawing lines into the terminal without switching to an alternate window.
88+
prodash-render-line = ["prodash/render-line", "prodash-render-line-crossterm", "prodash/progress-tree"]
6189

62-
#! ### `gitoxide-core` Configuration
90+
## Prints statistical information to inform about cache efficiency when those are dropped.
91+
## Use this as a way to understand if bigger caches actually produce greater yiedls.
92+
cache-efficiency-debug = ["gix-features/cache-efficiency-debug"]
6393

64-
## A way to enable all `gitoxide-core` tools found in `gix tools`
94+
## A way to enable most `gitoxide-core` tools found in `ein tools`, namely `organize` and `estimate hours`.
6595
gitoxide-core-tools = ["gitoxide-core/organize", "gitoxide-core/estimate-hours"]
6696

67-
## A program to perform analytics on a git repository, using an auto-maintained sqlite database
97+
## A program to perform analytics on a `git` repository, using an auto-maintained sqlite database
6898
gitoxide-core-tools-query = ["gitoxide-core-tools", "gitoxide-core/query"]
6999

70-
#! #### Mutually Exclusive Networking
71-
#! If both are set a compile error is triggered. This also means that `cargo … --all-features` will fail.
100+
#! ### Building Blocks for mutually exclusive networking
101+
#! If some of these are set at the same time a compile error is triggered. This also means that `cargo … --all-features` will fail.
72102

73103
## Use blocking client networking.
74104
gitoxide-core-blocking-client = ["gitoxide-core/blocking-client"]
@@ -79,10 +109,6 @@ http-client-reqwest = ["gix/blocking-http-transport-reqwest-rust-tls"]
79109
## Use async client networking.
80110
gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"]
81111

82-
# internal
83-
prodash-render-tui = ["prodash/render-tui", "prodash/render-tui-crossterm", "prodash/progress-tree", "futures-lite"]
84-
prodash-render-line = ["prodash/render-line", "prodash-render-line-crossterm", "prodash/progress-tree"]
85-
cache-efficiency-debug = ["gix-features/cache-efficiency-debug"]
86112

87113
[dependencies]
88114
anyhow = "1.0.42"

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,9 @@ effortlessly and for your particular CPU for additional performance gains.
145145
The minimum supported Rust version is [documented in the CI configuration](https://github.com/Byron/gitoxide/blob/main/.github/workflows/msrv.yml#L23),
146146
the latest stable one will work as well.
147147

148+
There are various build configurations, all of them are [documented here](https://docs.rs/crate/gitoxide/latest). The documentation should also be useful
149+
for packagers who need to tune external dependencies.
150+
148151
```
149152
# A certain way to install `gitoxide` with just Rust and a C compiler installed.
150153
# If there are problems with SSL certificates during clones, try to omit `--locked`.

src/lib.rs

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
//! This is the documentation of the binaries that come with `gitoxide`. These are called…
2+
//!
3+
//! #### `gix`
4+
//!
5+
//! A developer tool to allow using `gitoxide` algorithms and functionality outside of the test suite. It will be unstable as long as
6+
//! the `gix` crate is unstable and is explicitly not to be understood as `git` replacement.
7+
//!
8+
//! #### `ein`
9+
//!
10+
//! A program to eventually become the most convenient way to do typical operations on `git` repositories, with all tooling one typically
11+
//! needs built right into it.
12+
//! For now, it's most useful for its assorted set of `tools` which help to build automations or learn something about `git` repositories.
13+
//!
14+
//! ## Feature Flags
15+
//!
16+
//! Feature configuration can be complex and this document seeks to provide an overview.
17+
//!
18+
#![cfg_attr(
19+
feature = "document-features",
20+
cfg_attr(doc, doc = ::document_features::document_features!())
21+
)]
22+
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
23+
#![deny(rust_2018_idioms, missing_docs)]
24+
#![forbid(unsafe_code)]

0 commit comments

Comments
 (0)