-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 1.08 KB
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
28
29
30
31
32
33
34
35
36
37
[package]
name = "vynco"
version = "2.4.1"
edition = "2021"
rust-version = "1.83"
license = "Apache-2.0"
authors = ["VynCo <hello@vynco.ch>"]
description = "Rust SDK for the VynCo Swiss Corporate Intelligence API"
repository = "https://github.com/VynCorp/vc-rust"
homepage = "https://vynco.ch"
documentation = "https://docs.rs/vynco"
readme = "README.md"
keywords = ["vynco", "swiss", "corporate", "zefix", "sdk"]
categories = ["api-bindings", "web-programming::http-client"]
exclude = ["docs/", "CLAUDE.md"]
[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["rt", "time"] }
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
mockito = "1"
clap = { version = "~4.5.23", features = ["derive", "env"] }
[[example]]
name = "vynco_cli"
path = "examples/vynco_cli.rs"
[features]
default = ["rustls-tls"]
blocking = []
rustls-tls = ["reqwest/rustls-tls"]
native-tls = ["reqwest/native-tls"]