-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (39 loc) · 867 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
39
40
41
42
43
44
45
46
[package]
authors = ["alamminsalo <antti.lamminsalo@protonmail.com>"]
description = "Rusty API Modeler. Generates models from openapi spec."
edition = "2018"
exclude = ["example/"]
homepage = "https://github.com/alamminsalo/ram"
license = "MIT"
name = "ram"
repository = "https://github.com/alamminsalo/ram"
version = "1.0.18"
[[bin]]
name = "ram"
path = "src/main.rs"
[dependencies]
Inflector = "^0.11"
failure = "^0.1"
glob = "^0.3"
handlebars = "^3.0"
htmlescape = "^0.3"
indexmap = "*"
itertools = "^0.8"
maplit = "^1.0"
regex = "^1.3"
rust-embed = "^5.1"
structopt = "^0.3"
log = "0.4"
env_logger = "0.8"
[dependencies.openapi]
branch = "ram"
git = "https://github.com/alamminsalo/openapi"
[dependencies.serde]
features = ["derive"]
version = "^1.0"
[dependencies.serde_json]
version = "^1.0"
[dependencies.serde_yaml]
version = "^0.8"
[lib]
name = "ram"