We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit a564826Copy full SHA for a564826
Cargo.toml
@@ -0,0 +1,13 @@
1
+[package]
2
+name = "unicode-script"
3
+version = "0.1.0"
4
+authors = ["Manish Goregaokar <manishsmail@gmail.com>"]
5
+edition = "2018"
6
+
7
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9
+[features]
10
+with_std = []
11
+default_features = ["with_std"]
12
13
+[dependencies]
src/lib.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}
0 commit comments