-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
27 lines (24 loc) · 857 Bytes
/
Cargo.toml
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 = "gguf"
version = "0.1.2"
description = "A small utility to parse GGUF files"
edition = "2021"
license = "MIT"
authors = ["Jiayu Liu <[email protected]>"]
keywords = ["gguf", "parser", "metadata", "ai", "model"]
repository = "https://github.com/Jimexist/gguf"
homepage = "https://github.com/Jimexist/gguf"
include = ["/src", "README.md"]
[dependencies]
nom = { version = "7", features = ["alloc"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = { version = "0.9", optional = true }
serde_json = { version = "1.0", optional = true }
bytes = { version = "1.5", optional = true }
comfy-table = { version = "7", optional = true }
clap = { version = "4", optional = true, features = ["derive"] }
[features]
bin = ["serde_yaml", "serde_json", "comfy-table", "bytes", "clap"]
[[bin]]
name = "gguf-info"
required-features = ["bin"]