forked from Smerity/texting_robots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 849 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
28
[package]
name = "texting_robots"
authors = ["Stephen Merity <smerity@smerity.com>"]
description = "Texting Robots: A Rust native `robots.txt` parser with thorough unit testing."
homepage = "https://github.com/Smerity/texting_robots"
repository = "https://github.com/Smerity/texting_robots"
version = "0.2.2"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["robot", "robots", "parser", "spider", "crawler"]
categories = ["parser-implementations", "parsing", "web-programming"]
exclude = ["/.github", "/fuzz", "/wasi_poc.sh"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.55"
bstr = "0.2.17"
lazy_static = "1.4.0"
nom = "7.1.0"
percent-encoding = "2.1.0"
regex = "1.5.4"
thiserror = "1.0.30"
url = "2.2.2"
[profile.release]
lto = true