-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 685 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 685 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
[package]
name = "sfa"
description = "A minimal, flat file archive encoding/decoding library"
version = "1.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
include = ["src/**/*", "LICENSE-APACHE", "LICENSE-MIT", "README.md"]
repository = "https://github.com/fjall-rs/sfa"
homepage = "https://github.com/fjall-rs/sfa"
keywords = ["file-archive"]
categories = ["filesystem"]
rust-version = "1.89"
publish = true
[lib]
name = "sfa"
path = "src/lib.rs"
[dependencies]
byteorder = { package = "byteorder-lite", version = "0.1.0" }
log = "0.4.21"
xxhash-rust = { version = "0.8.15", features = ["xxh3"] }
[dev-dependencies]
test-log = "0.2.16"
tempfile = "3.10.1"