[package]
edition = "2021"
name = "pathlink"
version = "0.4.0"
authors = ["code@tinychain.net"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A URL type whose path can also be used as a filesystem path, for Rust"
readme = "README.md"
keywords = [
"ordered",
"set",
"map",
"custom",
"order",
]
categories = ["data-structures"]
license = "Apache-2.0"
repository = "https://github.com/TinyChain-Inc/pathlink.git"
[features]
all = [
"hash",
"stream",
"serialize",
"uuid",
]
hash = [
"async-hash",
"hex",
"hr-id/hash",
]
serialize = [
"serde",
"hr-id/serde",
]
stream = [
"destream",
"hr-id/stream",
]
uuid = ["hr-id/uuid"]
[lib]
name = "pathlink"
path = "src/lib.rs"
[dependencies.async-hash]
version = "0.5"
optional = true
[dependencies.derive_more]
version = "1.0"
features = ["display"]
[dependencies.destream]
version = "0.10.1"
optional = true
[dependencies.get-size]
version = "0.1"
[dependencies.get-size-derive]
version = "0.1"
[dependencies.hex]
version = "0.4"
optional = true
[dependencies.hr-id]
version = "0.7.0"
[dependencies.safecast]
version = "0.2"
[dependencies.serde]
version = "1.0"
optional = true
[dependencies.smallvec]
version = "1.11"