-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·25 lines (22 loc) · 816 Bytes
/
Copy pathCargo.toml
File metadata and controls
executable file
·25 lines (22 loc) · 816 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
[package]
name = "ray-rust"
version = "0.1.5"
edition = "2021"
authors = ["ALameLlama NicholasACiechanowski@gmail.com"]
description = "Spatie Ray in Rust"
homepage = "https://github.com/ALameLlama/ray-rust"
readme = "README.md"
repository = "https://github.com/ALameLlama/ray-rust"
license = "MIT"
keywords = ["spatie", "ray", "debug"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.24", features = ["blocking", "json"] }
rustc_version = { version = "0.4.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
uuid = { version = "1.7.0", features = ["v4", "fast-rng"] }
tokio = { version = "1.36.0", features = ["full"], optional = true }
[features]
default = []
with_tokio = ["tokio"]