diff options
author | June McEnroe <programble@gmail.com> | 2018-03-28 22:57:08 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2018-03-28 22:57:08 -0400 |
commit | f1ea644d94f62b1f20fe82bd821747edb43dbe21 (patch) | |
tree | 6822c64c28cc03713b56c0df0182d82fd3366f0a /rs/d-_-b | |
parent | Add Rust script for generating a rainbow palette (diff) | |
download | src-f1ea644d94f62b1f20fe82bd821747edb43dbe21.tar.gz src-f1ea644d94f62b1f20fe82bd821747edb43dbe21.zip |
Add d-_-b crate
Diffstat (limited to 'rs/d-_-b')
-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..acb1372f --- /dev/null +++ b/rs/d-_-b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "d-_-b" +version = "0.0.1" +authors = ["Curtis 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)] |