-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (72 loc) · 2.18 KB
/
Cargo.toml
File metadata and controls
77 lines (72 loc) · 2.18 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
[package]
name = "kittycad-modeling-cmds"
version = "0.2.167"
edition = "2021"
authors = ["KittyCAD, Inc."]
description = "Commands in the KittyCAD Modeling API"
repository = "https://github.com/KittyCAD/modeling-api"
keywords = ["kittycad"]
license = "MIT"
[package.metadata.docs.rs]
all-features = 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 = []
python = ["dep:pyo3", "dep:pyo3-stub-gen"]
arbitrary = ["dep:arbitrary", "uuid/arbitrary", "chrono/arbitrary"]
[dependencies]
anyhow = "1.0.100"
arbitrary = { version = "1", features = ["derive"], optional = true }
bon = "3.8.2"
chrono = { version = "0.4.43", features = ["serde"] }
cxx = { version = "1.0", optional = true }
data-encoding = "2.10.0"
enum-iterator = "2.3.0"
enum-iterator-derive = "1.2.1"
euler = "0.4.1"
http = "1.4.0"
kittycad = { workspace = true, optional = true }
kittycad-modeling-cmds-macros = { workspace = true }
kittycad-unit-conversion-derive = "0.1.0"
measurements = "0.11.0"
parse-display = "0.10.0"
parse-display-derive = "0.10.0"
pyo3 = { version = "0.25.1", optional = true }
pyo3-stub-gen = { version = "0.13.1", optional = true }
schemars = { version = "0.8.22", features = [
"bigdecimal04",
"chrono",
"url",
"uuid1",
] }
serde = { version = "1.0.219", features = ["derive"] }
serde_bytes = "0.11.19"
serde_json = { version = "1.0.149", optional = true }
slog = { version = "2.8.2", optional = true }
tabled = { version = "0.20", optional = true }
ts-rs = { version = "11.0.1", optional = true, features = [
"chrono-impl",
"uuid-impl",
"no-serde-warnings",
"serde-json-impl",
] }
uuid = { version = "1.19.0", features = ["serde", "v4", "js"] }
webrtc = { version = "0.12", optional = true }
[dev-dependencies]
bson = "2.14.0"
dropshot = { version = "0.16.6", default-features = false }
expectorate = "1.1.0"
openapi-lint = { git = "https://github.com/KittyCAD/openapi-lint", branch = "kittycad" }
openapiv3 = "2.2.0"
reqwest = "0.12.23"
tokio = { version = "1.49.0", features = ["macros"] }
[lints]
workspace = true