-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (61 loc) · 1.7 KB
/
Cargo.toml
File metadata and controls
67 lines (61 loc) · 1.7 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
[package]
name = "kittycad-modeling-cmds"
version = "0.2.102"
edition = "2021"
authors = ["KittyCAD, Inc."]
description = "Commands in 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]
anyhow = "1.0.97"
chrono = "0.4.40"
cxx = { version = "1.0", optional = true }
data-encoding = "2.8.0"
enum-iterator = "2.1.0"
enum-iterator-derive = "1.2.1"
euler = "0.4.1"
http = "1.2.0"
kittycad = { version = "0.3.30", optional = true }
kittycad-modeling-cmds-macros = { workspace = true }
kittycad-unit-conversion-derive = "0.1.0"
measurements = "0.11.0"
parse-display = "0.9.1"
parse-display-derive = "0.9.0"
schemars = { version = "0.8.22", features = [
"bigdecimal04",
"chrono",
"url",
"uuid1",
] }
serde = { version = "1.0.218", features = ["derive"] }
serde_bytes = "0.11.16"
serde_json = { version = "1.0.139", optional = true }
slog = { version = "2.7.0", optional = true }
tabled = { version = "0.18", optional = true }
ts-rs = { version = "10.1.0", optional = true, features = [
"uuid-impl",
"no-serde-warnings",
"serde-json-impl",
] }
uuid = { version = "1.15.1", features = ["serde", "v4", "js"] }
webrtc = { version = "0.12", optional = true }
[lints]
workspace = true
[features]
default = []
derive-jsonschema-on-enums = []
tabled = ["dep:tabled"]
ts-rs = ["dep:ts-rs"]
slog = ["dep:slog"]
cxx = ["dep:cxx"]
convert_client_crate = ["dep:kittycad"]
websocket = ["dep:serde_json"]
webrtc = ["dep:webrtc"]
unstable_exhaustive = []
[dev-dependencies]
bson = "2.13.0"
[package.metadata.docs.rs]
all-features = true