-
Notifications
You must be signed in to change notification settings - Fork 66
/
Cargo.toml
28 lines (25 loc) · 845 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
[package]
name = "github-pr-summary"
version = "0.1.0"
edition = "2021"
[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" }
[lib]
path = "src/github-pr-summary.rs"
crate-type = ["cdylib"]
[dependencies]
dotenv = "0.15.0"
github-flows = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.93"
anyhow = "1"
flowsnet-platform-sdk = "0.1"
lazy_static = "1.4.0"
regex = "1.7.1"
llmservice-flows = "0.3.0"
words-count = "0.1.4"
log = "0.4"
tokio = { version = "1", features = ["rt", "macros", "net", "time"] }