aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-pds/Cargo.toml
blob: 88262b8ab939e97ff9c081b361e76bedd139f1c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "adenosine-pds"
description = "Simple informal personal data server (PDS) for AT protocol and bsky.app"
keywords = ["atproto"]
categories = []

version = "0.2.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]
anyhow = "1"
structopt = "0.3"
serde = "1"
serde_json = "1"
log = "0.4"
pretty_env_logger = "0.4"
libipld = "0.14"
ipfs-sqlite-block-store = "0.13"
rusqlite = { version = "0.26", features = ["bundled"] }
rusqlite_migration = "1"
# NOTE: lexicon validation not implemented yet
#jsonschema = "*"
#schemafy = "*"
rouille = "3"
# NOTE: vendored for now
#iroh-car = "*"
adenosine-cli = { version = "0.2.0", path = "../adenosine-cli" }
tokio = { version = "1", features = ["full"] }
futures = "0.3"
sha256 = "1"
lazy_static = "1"
bcrypt = "0.13"
data-encoding = "2"
k256 = { version = "0.11", features = ["ecdsa"] }
p256 = { version = "0.11", features = ["ecdsa"] }
multibase = "0.9"
ucan = "0.7.0-alpha.1"
# TODO: replace this with data-encoding or similar; this is only needed for ucan_p256 stuff
bs58 = "0.4"
async-trait = "0.1"
dotenvy = "0.15"
askama = { version = "0.11", features = ["serde-json"] }
time = { version = "0.3", features = ["formatting"] }

# for vendored iroh-car
thiserror = "1.0"
integer-encoding = { version = "3", features = ["tokio_async"] }
multihash = "0.16"

[package.metadata.deb]
maintainer = "Bryan Newbold <bnewbold@robocracy.org>"
depends = "$auto"
section = "utility"
priority = "optional"
extended-description = """Simple informal personal data server (PDS) for AT protocol and bsky.app"""
assets = [
    ["target/release/adenosine-pds", "usr/bin/", "755"],
    ["../extra/adenosine-pds.1", "usr/share/man/man1/", "644"],
    ["../extra/adenosine-pds.bash_completions", "usr/share/bash-completion/completions/adenosine-pds", "644"],
    ["../extra/adenosine-pds.zsh_completions", "usr/share/zsh/vendor-completions/_adenosine-pds", "644"],
]