-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (26 loc) · 962 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
28
29
30
[package]
name = "tg_video_translator"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/lib.rs"
crate-type = ["cdylib"]
[patch.crates-io]
tokio = { git = "https://github.com/second-state/wasi_tokio.git", branch = "v1.36.x" }
socket2 = { git = "https://github.com/second-state/socket2.git", branch = "v0.5.x" }
hyper = { git = "https://github.com/second-state/wasi_hyper.git", branch = "v0.14.x" }
reqwest = { git = "https://github.com/second-state/wasi_reqwest.git", branch = "0.11.x" }
[dependencies]
dotenv = "0.15.0"
log = "0.4"
anyhow = "1"
flowsnet-platform-sdk = "0.1.2"
http_req_wasi = "0.10.2"
serde = { version = "1.0.157", features = ["derive"] }
serde_json = "1.0.94"
url = { version = "2.3.1", features = ["serde"] }
tg-flows = "0.3.2"
form_urlencoded = "1.2.1"
percent-encoding = "2.3.1"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] }
tokio = { version = "1", features = ["rt", "macros", "net", "time"] }