feat: add dotenv and assert-match as dev dependencies

This commit is contained in:
sanix-darker 2024-07-12 13:58:38 +02:00
parent bcf596c310
commit 2f6215c492
No known key found for this signature in database
GPG Key ID: 02BD1EB7C7D57CD3
2 changed files with 17 additions and 1 deletions

View File

@ -17,6 +17,12 @@ version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "assert_matches"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
[[package]]
name = "atomic-waker"
version = "1.1.2"
@ -102,6 +108,12 @@ version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
[[package]]
name = "dotenv"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
[[package]]
name = "encoding_rs"
version = "0.8.34"
@ -134,9 +146,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
[[package]]
name = "firecrawl-rs"
name = "firecrawl_rs"
version = "0.1.0"
dependencies = [
"assert_matches",
"dotenv",
"log",
"reqwest",
"serde",

View File

@ -27,6 +27,8 @@ version = "1"
features = ["full"]
[dev-dependencies]
assert_matches = "^1.5"
dotenv = "^0.15"
tokio = { version = "1", features = ["full"] }
[build-dependencies]