-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
38 lines (34 loc) · 848 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
38
[package]
name = "tsync"
description = "Generate typescript types from rust code."
version = "2.2.1"
readme = "README.md"
repository = "https://github.com/Wulf/tsync"
license = "MIT OR Apache-2.0"
keywords = ["typescript", "types", "generation", "macro"]
categories = [
"command-line-utilities",
"development-tools",
"development-tools::ffi",
"web-programming",
]
authors = ["Haris <[email protected]>"]
edition = "2018"
[dependencies]
structopt = "0.3.26"
syn = { version = "2.0.28", features = ["full", "extra-traits"] }
proc-macro2 = "1.0.66"
quote = "1.0.32"
walkdir = "2.3.3"
tsync-macro = "0.1.0"
convert_case = "0.6.0"
state = "0.6.0"
[dev-dependencies]
serde = { version = "1", features = ["derive"] }
[lib]
name = "tsync"
path = "src/lib.rs"
[[bin]]
name = "tsync"
test = false
path = "bin/main.rs"