From 9868465bdaa81ec265f1b50b93c76e7d56548a4b Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 11 Nov 2022 17:37:44 -0800 Subject: add 'adenosine' placeholder crate --- Cargo.toml | 1 + adenosine/.gitignore | 1 + adenosine/Cargo.toml | 13 +++++++++++++ adenosine/README.md | 8 ++++++++ adenosine/src/lib.rs | 1 + 5 files changed, 24 insertions(+) create mode 100644 adenosine/.gitignore create mode 100644 adenosine/Cargo.toml create mode 100644 adenosine/README.md create mode 100644 adenosine/src/lib.rs diff --git a/Cargo.toml b/Cargo.toml index dee801e..6875847 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] +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. -- cgit v1.2.3