diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-06 20:39:52 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-06 20:39:52 -0800 |
commit | 2a7771915e7547baefb48975507536a1c69b986b (patch) | |
tree | 6bef0148934bd580e9ea9384af06394bbfedb668 /adenosine-common/Cargo.toml | |
parent | 9528530bf266429c9738c621d7c55a54d336c514 (diff) | |
download | adenosine-2a7771915e7547baefb48975507536a1c69b986b.tar.gz adenosine-2a7771915e7547baefb48975507536a1c69b986b.zip |
create adenosine-common, with some types used by multiple crates
Diffstat (limited to 'adenosine-common/Cargo.toml')
-rw-r--r-- | adenosine-common/Cargo.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/adenosine-common/Cargo.toml b/adenosine-common/Cargo.toml new file mode 100644 index 0000000..f6f1ad2 --- /dev/null +++ b/adenosine-common/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "adenosine-common" +description = "Shared things (eg, types) for adenosine codebase" +keywords = ["atproto"] +categories = [] + +# common across workspace +version = "0.1.0-dev.0" +edition = "2021" +rust-version = "1.61" +authors = ["Bryan Newbold <bnewbold@robocracy.org>"] +license = "AGPLv3" +readme = "../README.md" +repository = "https://gitlab.com/bnewbold/adenosine" + +[dependencies] +structopt = "*" +regex = "*" +lazy_static = "*" +data-encoding = "*" +rand = "*" +anyhow = "1.0" + |