-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
37 lines (33 loc) · 1018 Bytes
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
".",
"./derive",
]
[package]
name = "typescript-type-def"
version = "0.5.13"
edition = "2018"
description = "Generate TypeScript type definitions for Rust types"
license = "MIT"
authors = ["Daniel Beckwith <[email protected]>"]
keywords = ["typescript", "javascript", "serde", "json"]
categories = ["development-tools::ffi", "encoding", "web-programming"]
homepage = "https://github.com/dbeckwith/rust-typescript-type-def"
documentation = "https://docs.rs/typescript-type-def"
repository = "https://github.com/dbeckwith/rust-typescript-type-def"
include = [
"src/**/*.rs",
"tests/**/*.rs",
"Cargo.toml",
]
[features]
json_value = ["serde_json"]
[dependencies]
typescript-type-def-derive = { version = "=0.5.13", path = "./derive" }
serde_json = { version = "1.0.128", optional = true }
[dev-dependencies]
difference = "2.0.0"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
uuid = { version = "1.10.0", features = ["serde"] }