-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
44 lines (41 loc) · 1.45 KB
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
36
37
38
39
40
41
42
43
44
[package]
name = "ngl"
version = "0.1.0"
edition = "2024"
description = "Unified API for Nix documentation"
license = "GPL-3.0"
repository = "https://github.com/argosnothing/NGL"
readme = "README.md"
keywords = ["nix", "nixos", "documentation", "api"]
categories = ["command-line-utilities", "api-bindings"]
[features]
default = ["example", "noogle", "nixpkgs", "nixos_manual"]
noogle = []
nixos_manual = []
example = []
nixpkgs = ["dep:brotli2", "dep:regex", "dep:aws-config", "dep:aws-sdk-s3"]
[dependencies]
anyhow = "1.0.101"
chrono = "0.4.43"
clap = { version = "4.5.57", features = ["derive"] }
reqwest = { version = "0.13.2", features = ["brotli", "json"] }
sea-orm = { version = "1.1.19", features = ["sqlx-sqlite", "runtime-tokio-rustls", "macros"] }
sea-orm-migration = { version = "1.1.19", features = ["sqlx-sqlite", "runtime-tokio-rustls"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread"] }
migration = { package = "ngl-migration", version = "0.1.0", path = "migration" }
pulldown-cmark = "0.13.0"
async-trait = "0.1.89"
futures = "0.3.31"
brotli2 = { version = "0.3.2", optional = true }
regex = { version = "1.10", optional = true }
aws-config = { version = "1.8", optional = true }
aws-sdk-s3 = { version = "1.8", optional = true }
indicatif = "0.17"
urlencoding = "2.1"
strum_macros = "0.27.2"
scraper = "0.22"
html2md = "0.2"
html-escape = "0.2.13"
strum = "0.27.2"