-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
27 lines (26 loc) · 876 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "sec_edgar"
version = "1.0.5"
edition = "2021"
license = "MIT"
description = "This crate provides tools to query the SEC's EDGAR API."
homepage = "https://github.com/tieje/rs_sec_edgar"
documentation = "https://docs.rs/sec_edgar/latest/sec_edgar/index.html"
repository = "https://github.com/tieje/rs_sec_edgar"
readme = "README.md"
exclude = [
".cargo/",
".vscode/",
".ignore/",
"TODO.md"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atom_syndication = { version = "0.11", features = ["with-serde"] }
regex = "1.8.4"
reqwest = { version = "0.11.18", features = ["gzip", "deflate", "json"] }
serde = "1.0.164"
serde-xml-rs = "0.6.0"
thiserror = "1.0.43"
tokio = { version = "1.28.2", default-features = false, features = ["net", "macros", "rt-multi-thread"] }
url = "2.4.0"