diff options
author | June McEnroe <june@causal.agency> | 2018-03-28 22:57:08 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-03-28 22:57:08 -0400 |
commit | 3cd1991d2628faf2c770306cfec202e71097c835 (patch) | |
tree | 3b05ad58ad2d334d66296d6f7768f69b5916a170 | |
parent | Add Rust script for generating a rainbow palette (diff) | |
download | src-3cd1991d2628faf2c770306cfec202e71097c835.tar.gz src-3cd1991d2628faf2c770306cfec202e71097c835.zip |
Add d-_-b crate
-rw-r--r-- | rs/d-_-b/.gitignore | 4 | ||||
-rw-r--r-- | rs/d-_-b/Cargo.toml | 8 | ||||
-rw-r--r-- | rs/d-_-b/src/lib.rs | 1 |
3 files changed, 13 insertions, 0 deletions
diff --git a/rs/d-_-b/.gitignore b/rs/d-_-b/.gitignore new file mode 100644 index 00000000..143b1ca0 --- /dev/null +++ b/rs/d-_-b/.gitignore @@ -0,0 +1,4 @@ + +/target/ +**/*.rs.bk +Cargo.lock diff --git a/rs/d-_-b/Cargo.toml b/rs/d-_-b/Cargo.toml new file mode 100644 index 00000000..056d9882 --- /dev/null +++ b/rs/d-_-b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "d-_-b" +version = "0.0.1" +authors = ["June McEnroe <june@causal.agency>"] +license = "AGPL-3.0" +description = "Look what you can do with crate names!" + +[dependencies] diff --git a/rs/d-_-b/src/lib.rs b/rs/d-_-b/src/lib.rs new file mode 100644 index 00000000..44d8a23f --- /dev/null +++ b/rs/d-_-b/src/lib.rs @@ -0,0 +1 @@ +#![allow(non_snake_case)] |