-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 967 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 967 Bytes
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
[package]
name = "lcas"
version = "0.1.2"
authors = [ "Taxrosdev" ]
description = "A library for link addressed storage."
repository = "https://github.com/timelessos/lcas"
documentation = "https://docs.rs/lcas/"
license = "MIT"
keywords = [ "file-synchronization", "software-delivery", "content-addressable", "storage" ]
categories = [ "filesystem", "os::linux-apis" ]
readme = "README.md"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
reqwest = { version = "0.12.23", optional = true, features = ["blocking"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
walkdir = { version = "2.5.0", optional = true }
xxhash-rust = { version = "0.8.15", features = ["xxh3"] }
zstd = { version = "0.13.3", default-features = false, features = ["arrays"]}
[features]
default = ["decoding"]
encoding = ["dep:walkdir"]
decoding = []
https = ["dep:reqwest", "decoding"]
[package.metadata.docs.rs]
features = ["encoding", "decoding", "https"]