-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (30 loc) · 796 Bytes
/
Cargo.toml
File metadata and controls
31 lines (30 loc) · 796 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
25
26
27
28
29
30
31
[package]
name = "setu"
version = "0.1.0"
edition = "2021"
description = "A modern, minimal API testing application"
authors = ["Raunak"]
license = "MIT"
[dependencies]
gpui = "0.2.2"
gpui-component = "0.5.1"
reqwest = { version = "0.13.1", features = [
"json",
"rustls",
"multipart",
"stream",
] }
log = "0.4.29"
env_logger = "0.11.8"
serde_json = "1.0.148"
anyhow = "1.0.100"
chrono = { version = "0.4.42", features = ["serde"] }
uuid = { version = "1.19.0", features = ["v4"] }
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.49.0", features = ["rt-multi-thread", "sync", "fs", "time"] }
rust-embed = "8.9.0"
urlencoding = "2.1.3"
mime_guess = "2.0.5"
dirs = "6.0.0"
base64 = "0.22.1"
rodio = { version = "0.21.1", features = ["symphonia-all"] }