From bab98346caeda7faa6fd7ce9f2dc5eadb828bc63 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 26 Oct 2022 20:36:03 -0700 Subject: rename main crate to '-pds', start '-cli' crate --- adenosine-pds/.gitignore | 1 + adenosine-pds/Cargo.toml | 30 ++++++++++++++++++++++++++++++ adenosine-pds/src/main.rs | 3 +++ 3 files changed, 34 insertions(+) create mode 100644 adenosine-pds/.gitignore create mode 100644 adenosine-pds/Cargo.toml create mode 100644 adenosine-pds/src/main.rs (limited to 'adenosine-pds') diff --git a/adenosine-pds/.gitignore b/adenosine-pds/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/adenosine-pds/.gitignore @@ -0,0 +1 @@ +/target diff --git a/adenosine-pds/Cargo.toml b/adenosine-pds/Cargo.toml new file mode 100644 index 0000000..a3bb880 --- /dev/null +++ b/adenosine-pds/Cargo.toml @@ -0,0 +1,30 @@ +[package] +name = "adenosine-pds" +version = "0.1.0-dev.0" +edition = "2021" +authors = ["Bryan Newbold "] +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 " +depends = "$auto" +section = "utility" +priority = "optional" +extended-description = """"TODO""" +assets = [ + ["target/release/adenosine-pds", "usr/bin/", "755"], + #["../extra/adenosine-pds.1", "usr/share/man/man1/", "644"], +] diff --git a/adenosine-pds/src/main.rs b/adenosine-pds/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/adenosine-pds/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} -- cgit v1.2.3