Crate initialization
This commit is contained in:
parent
a881b6ac69
commit
a4f221352b
3 changed files with 1178 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
.vscode
|
||||||
|
|
||||||
|
**/target
|
1157
tenor_v2rs/Cargo.lock
generated
Normal file
1157
tenor_v2rs/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
18
tenor_v2rs/Cargo.toml
Normal file
18
tenor_v2rs/Cargo.toml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
[package]
|
||||||
|
name = "tenor_v2rs"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
anyhow = "1.0.71"
|
||||||
|
dotenv = "0.15.0"
|
||||||
|
regex = "1.9.0"
|
||||||
|
json = "0.12.4"
|
||||||
|
reqwest = "0.11.24"
|
||||||
|
form_urlencoded = "1.2.1"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
DEBUG = []
|
||||||
|
RELEASE = []
|
Loading…
Reference in a new issue