add unsigned datapod index request
parent
2fcad6d1
No related branches found
No related tags found
Showing
- Cargo.lock 135 additions, 118 deletionsCargo.lock
- Cargo.toml 5 additions, 3 deletionsCargo.toml
- src/commands/account.rs 8 additions, 1 deletionsrc/commands/account.rs
- src/commands/commented.rs 63 additions, 0 deletionssrc/commands/commented.rs
- src/commands/ipfs.rs 17 additions, 1 deletionsrc/commands/ipfs.rs
... | ... | @@ -46,9 +46,11 @@ inquire = "^0.6.2" |
directories = "^5.0.1" | ||
comfy-table = "^7.1.1" | ||
# IPFS (RPC API and CID) | ||
ipfs-api-backend-hyper = { version = "0.6", features = ["with-hyper-rustls"] } | ||
cid = "0.7.0" | ||
# IPFS (RPC API, CID, IPLD, dagcbor) | ||
ipfs-api-backend-hyper = { version = "^0.6", features = ["with-hyper-rustls"] } | ||
cid = { version = "^0.11.0", features = ["serde"] } | ||
ipld-core = { version = "^0.4.1", features = ["serde"] } | ||
serde_ipld_dagcbor = "^0.1.0" | ||
# crypto | ||
scrypt = { version = "^0.11", default-features = false } # for old-style key generation | ||
nacl = { version = "^0.5.3" } # for old-style key generation | ||
... | ... |
Please register or sign in to comment