We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit f65abd0Copy full SHA for f65abd0
.gitignore
@@ -0,0 +1,2 @@
1
+/target
2
+/Cargo.lock
Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "tracing-filter"
3
+version = "0.0.0-dev"
4
+edition = "2021"
5
+
6
+[dependencies]
src/lib.rs
@@ -0,0 +1,8 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ let result = 2 + 2;
+ assert_eq!(result, 4);
7
+ }
8
+}
0 commit comments