Files
firecrawl/apps/rust-sdk/Cargo.toml
T

35 lines
970 B
TOML
Raw Normal View History

2024-07-07 14:40:52 +02:00
[package]
2024-08-15 10:11:27 -03:00
name = "firecrawl"
author= "Mendable.ai"
version = "1.0.0"
2024-07-07 14:40:52 +02:00
edition = "2021"
2024-09-20 21:55:05 +02:00
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"
2024-08-15 10:11:27 -03:00
name = "firecrawl"
2024-07-07 14:40:52 +02:00
# 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"] }
2024-07-12 15:22:55 +02:00
tokio = { version = "^1", features = ["full"] }
2024-07-07 14:40:52 +02:00
[dev-dependencies]
2024-07-12 14:54:38 +02:00
clippy = "^0.0.302"
assert_matches = "^1.5"
dotenvy = "^0.15"
2024-07-07 14:40:52 +02:00
tokio = { version = "1", features = ["full"] }
[build-dependencies]
tokio = { version = "1", features = ["full"] }