We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 606b4b1 commit c5ee23eCopy full SHA for c5ee23e
README.md
@@ -77,7 +77,18 @@ async fn it_still_works() {
77
}
78
```
79
80
-#### Features
+#### Cargo Feature Flags
81
+
82
+```toml
83
+# Cargo.toml
84
+[dependencies]
85
+# PICK ONE OF THE FOLLOWING:
86
87
+# Support log crate only (default)
88
+test-log = { version = "0.2" }
89
+# Support tracing crate
90
+test-log = { version = "0.2", features = [ "trace" ] }
91
+```
92
93
The crate comes with two features pertaining "backend" initialization:
94
- `log`, enabled by default, controls initialization for the `log`
0 commit comments