aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-10-26 20:36:03 -0700
committerBryan Newbold <bnewbold@robocracy.org>2022-10-26 20:36:03 -0700
commitbab98346caeda7faa6fd7ce9f2dc5eadb828bc63 (patch)
tree66c03a25a847350f6976007a860f2070f98c7443 /adenosine
parentc4485e4b134d946227d6cbd52f57ce175387749d (diff)
downloadadenosine-bab98346caeda7faa6fd7ce9f2dc5eadb828bc63.tar.gz
adenosine-bab98346caeda7faa6fd7ce9f2dc5eadb828bc63.zip
rename main crate to '-pds', start '-cli' crate
Diffstat (limited to 'adenosine')
-rw-r--r--adenosine/.gitignore1
-rw-r--r--adenosine/Cargo.toml30
-rw-r--r--adenosine/src/main.rs3
3 files changed, 0 insertions, 34 deletions
diff --git a/adenosine/.gitignore b/adenosine/.gitignore
deleted file mode 100644
index ea8c4bf..0000000
--- a/adenosine/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/target
diff --git a/adenosine/Cargo.toml b/adenosine/Cargo.toml
deleted file mode 100644
index fec4d38..0000000
--- a/adenosine/Cargo.toml
+++ /dev/null
@@ -1,30 +0,0 @@
-[package]
-name = "adenosine"
-version = "0.1.0-dev.0"
-edition = "2021"
-authors = ["Bryan Newbold <bnewbold@robocracy.org>"]
-license = "AGPLv3"
-description = "Informal implementation of atproto.com"
-readme = "../README.md"
-repository = "https://gitlab.com/bnewbold/adenosine"
-keywords = ["atproto"]
-#categories = []
-
-[dependencies]
-structopt = "*"
-hyper = "*"
-tokio = { version = "1", features = ["full"] }
-serde_json = "*"
-log = "*"
-env_logger = "*"
-
-[package.metadata.deb]
-maintainer = "Bryan Newbold <bnewbold@robocracy.org>"
-depends = "$auto"
-section = "utility"
-priority = "optional"
-extended-description = """"TODO"""
-assets = [
- ["target/release/adenosine", "usr/bin/", "755"],
- #["../extra/adenosine.1", "usr/share/man/man1/", "644"],
-]
diff --git a/adenosine/src/main.rs b/adenosine/src/main.rs
deleted file mode 100644
index e7a11a9..0000000
--- a/adenosine/src/main.rs
+++ /dev/null
@@ -1,3 +0,0 @@
-fn main() {
- println!("Hello, world!");
-}