Skip to content

Commit

Permalink
feat(sdk/rust): first batch of changes for 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mogery committed Sep 20, 2024
1 parent 6aa4681 commit 93a2044
Show file tree
Hide file tree
Showing 9 changed files with 808 additions and 311 deletions.
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"rust-analyzer.linkedProjects": [
"apps/rust-sdk/Cargo.toml"
]
}
229 changes: 222 additions & 7 deletions apps/rust-sdk/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions apps/rust-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "firecrawl"
author="Mendable.ai"
version = "0.1.0"
author= "Mendable.ai"
version = "1.0.0"
edition = "2021"
license = "GPL-2.0-or-later"
license = "GPL-3.0-or-later"
homepage = "https://www.firecrawl.dev/"
repository ="https://github.com/mendableai/firecrawl"
description = "Rust SDK for Firecrawl API."
authors = ["sanix-darker <[email protected]>"]
authors = ["Gergő Móricz <[email protected]>", "sanix-darker <[email protected]>"]

[lib]
path = "src/lib.rs"
Expand All @@ -18,6 +18,7 @@ name = "firecrawl"
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"] }
Expand All @@ -27,7 +28,7 @@ tokio = { version = "^1", features = ["full"] }
clippy = "^0.0.302"
rustfmt = "^0.10"
assert_matches = "^1.5"
dotenv = "^0.15"
dotenvy = "^0.15"
tokio = { version = "1", features = ["full"] }

[build-dependencies]
Expand Down
Loading

0 comments on commit 93a2044

Please sign in to comment.