-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 818 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 818 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
[package]
name = "cargo-typify"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "cargo command to generate Rust code from a JSON Schema"
repository = "https://github.com/oxidecomputer/typify"
readme = "README.md"
keywords = ["json", "schema", "cargo"]
categories = ["api-bindings", "compilers"]
rust-version.workspace = true
default-run = "cargo-typify"
[dependencies]
typify = { workspace = true }
clap = { workspace = true }
color-eyre = { workspace = true }
env_logger = { workspace = true }
rustfmt-wrapper = { workspace = true }
semver = { workspace = true }
serde_json = { workspace = true }
schemars = { workspace = true }
[dev-dependencies]
assert_cmd = { workspace = true }
expectorate = { workspace = true }
newline-converter = { workspace = true }
tempdir = { workspace = true }