aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-10-26 14:31:39 -0700
committerBryan Newbold <bnewbold@robocracy.org>2022-10-26 14:31:39 -0700
commitc4485e4b134d946227d6cbd52f57ce175387749d (patch)
tree68980a135974539210c913f8d3a6d1e65e167cbb /adenosine
parentb66f4349a91da353e6c9d5abb0477cc4ba2d571b (diff)
downloadadenosine-c4485e4b134d946227d6cbd52f57ce175387749d.tar.gz
adenosine-c4485e4b134d946227d6cbd52f57ce175387749d.zip
start sketching out a plan, rust deps
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, 34 insertions, 0 deletions
diff --git a/adenosine/.gitignore b/adenosine/.gitignore
new file mode 100644
index 0000000..ea8c4bf
--- /dev/null
+++ b/adenosine/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/adenosine/Cargo.toml b/adenosine/Cargo.toml
new file mode 100644
index 0000000..fec4d38
--- /dev/null
+++ b/adenosine/Cargo.toml
@@ -0,0 +1,30 @@
+[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
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/adenosine/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}