forked from typst/hayagriva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 1.06 KB
/
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
28
29
30
31
32
33
34
35
[package]
name = "hayagriva"
version = "0.3.2"
authors = ["Martin Haug <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Work with references: Literature database management, storage, and citation formatting"
repository = "https://github.com/typst/hayagriva"
readme = "README.md"
categories = ["template-engine", "value-formatting", "command-line-utilities"]
keywords = ["bibliography", "citation", "reference", "bibtex", "literature"]
[features]
default = ["biblatex"]
cli = ["clap"]
[dependencies]
biblatex = { version = "0.8", optional = true }
clap = { version = "3.1", optional = true, features = ["cargo"] }
chrono = { version = "0.4", default-features = false }
isolang = "2.1"
lazy_static = "1.4.0"
linked-hash-map = "0.5.3"
paste = "1.0.0"
regex = { version = "1.4", default-features = false, features = ["std", "unicode-perl"] }
strum = { version = "0.24", features = ["derive"] }
thiserror = "1.0.20"
unic-langid = "0.9.0"
unicode-segmentation = "1.6.0"
url = "2.1.1"
yaml-rust = "0.4.4"
[[bin]]
name = "hayagriva"
required-features = ["cli"]