-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 870 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 870 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 = "kittycad-modeling-session"
version = "0.1.4"
edition = "2021"
authors = ["KittyCAD, Inc."]
description = "Start a session with the KittyCAD Modeling API"
rust-version = "1.74"
repository = "https://github.com/KittyCAD/modeling-api"
keywords = ["kittycad"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3.31"
kittycad = { workspace = true }
kittycad-modeling-cmds = { workspace = true, features = ["websocket"] }
lsystem = "0.2.1"
reqwest = "0.12.12"
serde_json = "1.0.139"
thiserror = "2.0.12"
tokio = { version = "1", features = ["sync"] }
tokio-tungstenite = "0.24.0"
uuid = { version = "1.15.1", features = ["v4"] }
[dev-dependencies]
color-eyre = "0.6"
image = "0.25.1"
tokio = { version = "1", features = ["rt", "macros"] }
[lints]
workspace = true