aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 12 insertions, 3 deletions
diff --git a/README.md b/README.md
index f0b2fd9..a89c8f8 100644
--- a/README.md
+++ b/README.md
@@ -7,6 +7,18 @@
The convenient dependency injection & inversion of control framework for Rust.
+<div class="warning">
+
+Currently, This crate does not work on nightly versions of Rust. This is because Nightly
+versions uses rust-lld. See [Linkme issue #94](https://github.com/dtolnay/linkme/issues/94).
+
+A temporary fix for this is to build with `RUSTFLAGS="-C link-args=-znostart-stop-gc"`
+</div>
+
+## Changelog
+You can find out what changes have been made in various versions
+[here](https://github.com/HampusMat/Syrette/blob/master/CHANGELOG.md).
+
## Namesake
From the [syrette Wikipedia article](https://en.wikipedia.org/wiki/Syrette).
> A syrette is a device for injecting liquid through a needle.
@@ -178,9 +190,6 @@ A type or trait that represents a type (itself in the case of it being a type).
**Factory**<br>
A function that creates new instances of a specific type or trait.
-**Default factory**<br>
-A function that takes no arguments that creates new instances of a specific type or trait.
-
## Rust version requirements
Syrette requires Rust >= 1.62.1 to work. This is mainly due to the dependency on [Linkme](https://crates.io/crates/linkme).