mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 03:32:22 +08:00
36 lines
988 B
TOML
36 lines
988 B
TOML
[package]
|
|
name = "firecrawl"
|
|
author= "Mendable.ai"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
homepage = "https://www.firecrawl.dev/"
|
|
repository ="https://github.com/mendableai/firecrawl"
|
|
description = "Rust SDK for Firecrawl API."
|
|
authors = ["Gergő Móricz <mogery@firecrawl.dev>", "sanix-darker <sanixdk@gmail.com>"]
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
name = "firecrawl"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
reqwest = { version = "^0.12", features = ["json", "blocking"] }
|
|
serde = { version = "^1.0", features = ["derive"] }
|
|
serde_json = "^1.0"
|
|
serde_with = "^3.9"
|
|
log = "^0.4"
|
|
thiserror = "^1.0"
|
|
uuid = { version = "^1.10", features = ["v4"] }
|
|
tokio = { version = "^1", features = ["full"] }
|
|
|
|
[dev-dependencies]
|
|
clippy = "^0.0.302"
|
|
rustfmt = "^0.10"
|
|
assert_matches = "^1.5"
|
|
dotenvy = "^0.15"
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
[build-dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|