diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-11 17:37:44 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-11 17:38:05 -0800 |
commit | 9868465bdaa81ec265f1b50b93c76e7d56548a4b (patch) | |
tree | 4fd6f191260640d19de15e350b85ac40b63e4339 | |
parent | 8a01449d158a3a423c965bc48df0f8512536dbaa (diff) | |
download | adenosine-crate-placeholder.tar.gz adenosine-crate-placeholder.zip |
add 'adenosine' placeholder cratecrate-placeholder
-rw-r--r-- | Cargo.toml | 1 | ||||
-rw-r--r-- | adenosine/.gitignore | 1 | ||||
-rw-r--r-- | adenosine/Cargo.toml | 13 | ||||
-rw-r--r-- | adenosine/README.md | 8 | ||||
-rw-r--r-- | adenosine/src/lib.rs | 1 |
5 files changed, 24 insertions, 0 deletions
@@ -1,5 +1,6 @@ [workspace] members = ["adenosine-cli", "adenosine-pds"] +exclude = ["adenosine"] # NOTE: [workspace.package] did not work with some plugins and build tools diff --git a/adenosine/.gitignore b/adenosine/.gitignore new file mode 100644 index 0000000..03314f7 --- /dev/null +++ b/adenosine/.gitignore @@ -0,0 +1 @@ +Cargo.lock diff --git a/adenosine/Cargo.toml b/adenosine/Cargo.toml new file mode 100644 index 0000000..96c0d54 --- /dev/null +++ b/adenosine/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "adenosine" +keywords = ["atproto"] +description = "You probably want 'adenosine-cli'" +version = "0.0.0-placeholder.0" +edition = "2021" +rust-version = "1.61" +authors = ["Bryan Newbold <bnewbold@robocracy.org>"] +license = "AGPL-3.0-or-later" +readme = "README.md" +repository = "https://gitlab.com/bnewbold/adenosine" + +[dependencies] diff --git a/adenosine/README.md b/adenosine/README.md new file mode 100644 index 0000000..f0c09a9 --- /dev/null +++ b/adenosine/README.md @@ -0,0 +1,8 @@ + +`adenosine`: enthusiast-grade implementation of atproto.com in Rust +=================================================================== + +This is a placeholder crate. You probably want either: + +- `adenosine-cli`: command-line client (`adenosine`) +- `adenosine-pds`: "small world" personal data server implementation, with data in sqlite diff --git a/adenosine/src/lib.rs b/adenosine/src/lib.rs new file mode 100644 index 0000000..71e6cc7 --- /dev/null +++ b/adenosine/src/lib.rs @@ -0,0 +1 @@ +//! Placeholder crate. You probably want `adenosine-cli` instead. |