-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathCargo.toml
More file actions
89 lines (72 loc) · 1.83 KB
/
Cargo.toml
File metadata and controls
89 lines (72 loc) · 1.83 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[package]
name = "bors"
version = "0.1.0"
edition = "2024"
rust-version = "1.88.0"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# CLI
clap = { version = "4", features = ["env", "derive"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Errors
anyhow = "1"
thiserror = "2"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1.0"
rust_team_data = { git = "https://github.com/rust-lang/team" }
# GitHub
octocrab = { version = "0.49", features = ["timeout", "stream"] }
# Async
futures = "0.3"
tokio = { version = "1", features = ["net", "fs", "rt-multi-thread", "process"] }
# Web
hyper = "1"
axum = { version = "0.8", features = ["http2"] }
axum-embed = "0.1"
rust-embed = "8"
tower = { version = "0.5", features = ["limit"] }
tower-http = { version = "0.6.4", features = ["catch-panic", "compression-br", "compression-gzip"] }
jsonwebtoken = "10"
url = "2"
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
http = "1"
askama = "0.15"
# Cryptography
sha2 = "0.10"
hmac = "0.12"
hex = "0.4"
secrecy = "0.10"
# Database
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-rustls", "postgres", "chrono"] }
# Time
chrono = "0.4"
# Utilities
arc-swap = "1"
itertools = "0.14"
rand = { version = "0.9", features = ["alloc"] }
# Paths
tempfile = "3"
which = "8"
# Text processing
pulldown-cmark = "0.13"
regex = "1"
[dev-dependencies]
insta = "1.26"
wiremock = "0.6"
base64 = "0.22"
tracing-test = "0.2"
regex = "1"
parking_lot = "0.12"
thread_local = "1"
sqlparser = { version = "0.61", features = ["visitor"] }
graphql-parser = "0.4"
urlencoding = "2"
[profile.release]
debug = 1
[profile.dev.package.sqlx-macros]
opt-level = 3