[package]
edition = "2021"
rust-version = "1.88"
name = "synaptic-loaders"
version = "0.2.7"
authors = ["Synaptic Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Document loaders: Text, JSON, CSV, Markdown, Directory, Web, Notion, GitHub, YouTube, arXiv"
homepage = "https://dnw3.github.io/synaptic/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/dnw3/synaptic"
[lib]
name = "synaptic_loaders"
path = "src/lib.rs"
[[test]]
name = "arxiv_loader"
path = "tests/arxiv_loader.rs"
[[test]]
name = "csv_loader"
path = "tests/csv_loader.rs"
[[test]]
name = "directory_loader"
path = "tests/directory_loader.rs"
[[test]]
name = "file_loader"
path = "tests/file_loader.rs"
[[test]]
name = "github_loader"
path = "tests/github_loader.rs"
[[test]]
name = "json_loader"
path = "tests/json_loader.rs"
[[test]]
name = "lazy_load"
path = "tests/lazy_load.rs"
[[test]]
name = "markdown_loader"
path = "tests/markdown_loader.rs"
[[test]]
name = "notion_loader"
path = "tests/notion_loader.rs"
[[test]]
name = "text_loader"
path = "tests/text_loader.rs"
[[test]]
name = "web_loader"
path = "tests/web_loader.rs"
[[test]]
name = "youtube_loader"
path = "tests/youtube_loader.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.csv]
version = "1.3"
[dependencies.quick-xml]
version = "0.37"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"stream",
"query",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.synaptic-core]
version = "0.2"
[dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]
[dependencies.urlencoding]
version = "2"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]