diff options
author | bryan newbold <bnewbold@robocracy.org> | 2023-02-19 17:01:07 -0800 |
---|---|---|
committer | bryan newbold <bnewbold@robocracy.org> | 2023-02-19 17:19:39 -0800 |
commit | ec2bf0c54245cd84f492847d2a1e070919b14a53 (patch) | |
tree | dbeb5b28c8b7e06eb9ac192d14ea4fdec81bb1e7 /adenosine-pds/Cargo.toml | |
parent | b8ba815b4cafdff48694d14c994e862738d342ef (diff) | |
download | adenosine-ec2bf0c54245cd84f492847d2a1e070919b14a53.tar.gz adenosine-ec2bf0c54245cd84f492847d2a1e070919b14a53.zip |
more refactoring of common code and APIs
Diffstat (limited to 'adenosine-pds/Cargo.toml')
-rw-r--r-- | adenosine-pds/Cargo.toml | 32 |
1 files changed, 12 insertions, 20 deletions
diff --git a/adenosine-pds/Cargo.toml b/adenosine-pds/Cargo.toml index 41cfaae..f9dba1a 100644 --- a/adenosine-pds/Cargo.toml +++ b/adenosine-pds/Cargo.toml @@ -13,32 +13,24 @@ readme = "README.md" repository = "https://gitlab.com/bnewbold/adenosine" [dependencies] +adenosine = { version = "0.2.0", path = "../adenosine" } anyhow = "1" -structopt = "0.3" -serde = "1" -serde_json = "1" +askama = { version = "0.11", features = ["serde-json"] } +bcrypt = "0.13" +data-encoding = "2" +dotenvy = "0.15" +#ipfs-sqlite-block-store = "0.13" +lazy_static = "1" +libipld = { version = "0.14", features = ["dag-cbor", "derive"] } log = "0.4" pretty_env_logger = "0.4" -libipld = "0.14" -ipfs-sqlite-block-store = "0.13" +rouille = "3" 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 = { version = "0.2.0", path = "../adenosine" } +serde = "1" +serde_json = "1" +structopt = "0.3" tokio = { version = "1", features = ["full"] } -futures = "0.3" -lazy_static = "1" -bcrypt = "0.13" -data-encoding = "2" -# TODO: replace this with data-encoding or similar; this is only needed for ucan_p256 stuff -async-trait = "0.1" -dotenvy = "0.15" -askama = { version = "0.11", features = ["serde-json"] } [package.metadata.deb] maintainer = "Bryan Newbold <bnewbold@robocracy.org>" |