diff options
Diffstat (limited to 'iroh-car/Cargo.toml')
-rw-r--r-- | iroh-car/Cargo.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/iroh-car/Cargo.toml b/iroh-car/Cargo.toml new file mode 100644 index 0000000..3130af1 --- /dev/null +++ b/iroh-car/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "iroh-car" +version = "0.1.0" +edition = "2021" +authors = ["Friedel Ziegelmayer <me@dignifiedquire.com>"] +license = "Apache-2.0/MIT" +repository = "https://github.com/n0-computer/iroh" +description = "Implementation the car files for iroh" + +[dependencies] +cid = "0.8" +ipld = { package = "libipld", version = "0.14"} +ipld-cbor = { package = "libipld-cbor", version = "0.14" } +thiserror = "1.0" +futures = "0.3.21" +integer-encoding = { version = "3.0", features = ["tokio_async"] } +multihash = "0.16" +tokio = { version = "1", features = ["io-util"] } + +[dev-dependencies] +tokio = { version = "1", features = ["macros", "sync", "rt", "fs", "io-util"] } + +[features] |