aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-04-01 16:07:37 -0600
committerMelody Horn <melody@boringcactus.com>2021-04-01 16:07:37 -0600
commitf94e6622872e02447cae11ca878b7d3289921553 (patch)
treef1d2eac667bfdcc510d5e600560006ab2ffd240f
parent46a6893d6e0646a552e5b7f4086c75e2b745a3bf (diff)
downloadbird-machine-f94e6622872e02447cae11ca878b7d3289921553.tar.gz
bird-machine-f94e6622872e02447cae11ca878b7d3289921553.zip
add disclaimer
-rw-r--r--README.md2
-rw-r--r--src/lib.rs2
2 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 744a530..4d1736a 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,8 @@
Compile your regular expressions at compile time.
+**Almost none of this has actually been implemented yet. Do not use this yet.**
+
## Example: find a date
```rust
diff --git a/src/lib.rs b/src/lib.rs
index 1125d73..8d08a0d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,6 +2,8 @@
//!
//! Compile your regular expressions at compile time.
//!
+//! **Almost none of this has actually been implemented yet. Do not use this yet.**
+//!
//! ## Example: find a date
//!
//! ```rust