19 lines
552 B
TOML
19 lines
552 B
TOML
[package]
|
|
name = "radicle-schemars"
|
|
description = "Utility to print JSON Schemas from the `radicle` crate"
|
|
homepage = "https://radicle.xyz"
|
|
repository = "https://app.radicle.xyz/seeds/seed.radicle.xyz/rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
version = "0.1.0"
|
|
rust-version.workspace = true
|
|
|
|
[[bin]]
|
|
name = "radicle-schemars"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
radicle = { workspace = true, features = ["schemars"]}
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true } |