-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (23 loc) · 790 Bytes
/
Cargo.toml
File metadata and controls
24 lines (23 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "voiceit3"
version = "3.0.4"
authors = ["gilgameshskytrooper <me@gilgameshskytrooper.io>"]
description = """
A Rust wrapper for VoiceIt's API 3.0 featuring Voice + Face Verification and Identification.
"""
documentation = "https://voiceit.io/documentation"
homepage = "https://voiceit.io"
repository = "https://github.com/voiceittech/voiceit3-rust"
readme = "README.md"
keywords = ["biometrics", "voice", "face-recognition", "voice-recognition", "voiceit"]
license = "MIT"
edition = "2021"
[dependencies]
reqwest = { version = "0.13.3", default-features = false, features = ["rustls", "blocking", "multipart"] }
base64 = "0.21.2"
hyper = "1.9.0"
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.100"
regex = "1.9.1"
url = "2.4.0"
urlencoding = "2"