mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-16 06:45:58 +08:00

* chore(rust-sdk): cargo fmt * feat(rust-sdk): implement search api + example + test * feat(rust-sdk): implement crawl cancel api + example + test * feat(rust-sdk): implement crawl check errors api + example + test * feat(rust-sdk): implement batch crawl + test + example + Fix MapOptions * feat(rust-sdk): implement extract api + test + example * feat(rust-sdk): implement llmtxt api + test + example * chore(rust-sdk): correct mock tests * chore(rust-sdk): prep for cargo distribution
41 lines
1.2 KiB
TOML
41 lines
1.2 KiB
TOML
[package]
|
|
name = "firecrawl"
|
|
author= "Mendable.ai"
|
|
version = "1.1.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>", "kkharji <kkharji@protonmail.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"] }
|
|
futures = "0.3.31"
|
|
schemars = "0.8.22"
|
|
|
|
[dev-dependencies]
|
|
clippy = "^0.0.302"
|
|
assert_matches = "^1.5"
|
|
dotenvy = "^0.15"
|
|
tokio = { version = "1", features = ["full"] }
|
|
mockito = "1.7.0"
|
|
clap = { version ="4.5.35", features = ["derive"] }
|
|
axum = { version = "0.8.3", features = ["tokio", "macros"] }
|
|
bat = "0.25.0"
|
|
|
|
[build-dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|