aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2023-01-18 20:46:26 +0100
committerDaniel Schadt <kingdread@gmx.de>2023-01-18 20:46:26 +0100
commita6e3e58877307d7c9113fb229d46ada5f165eadc (patch)
tree35a1d5d3a8e00369ea958ec02df688430d78a995 /src/lib.rs
parentac3afadba547b4b9a4063da567acd6d2f4f74554 (diff)
downloadhittekaart-a6e3e58877307d7c9113fb229d46ada5f165eadc.tar.gz
hittekaart-a6e3e58877307d7c9113fb229d46ada5f165eadc.tar.bz2
hittekaart-a6e3e58877307d7c9113fb229d46ada5f165eadc.zip
add some more docstrings
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 670678f..d6a6a46 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,10 @@
-//! This is a stub library for `hittekaart` to expose the functions for benchmarking.
+//! `hittekaart` is a program to generate heatmaps from GPX tracks.
+//!
+//! Note that this crate is not meant to be used as a library. Instead, use the command line
+//! program that is included in this crate.
+//!
+//! This library therefore contains an API that is tailored to the use case of the `hittekaart`
+//! binary.
pub mod gpx;
pub mod layer;
pub mod renderer;