-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 881 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 881 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
28
29
30
[package]
name = "get_user_agent"
version = "0.1.1"
edition = "2021"
authors = ["TechfaneTechnologies <techfanetechnologies@gmail.com>"]
description = "Get_User_Agent is an easy to use rust CLI program and library for extracting the latest user agents of all browsers on Windows, Mac, Linux, Android, and iOS platforms."
repository = "https://github.com/TechfaneTechnologies/user_agent"
categories = ["command-line-utilities"]
readme = "README.md"
license = "MIT"
keywords = [
"User-Agent",
"user-agent",
"browser-identity",
"scraping",
"web-scraping"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3.21"
reqwest = "0.11.10"
scraper = "0.13.0"
tokio = { version = "1.18.2", features = ["full"] }
[profile.release]
opt-level = "z"
codegen-units = 1
strip = "debuginfo"
lto = "fat"