-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (23 loc) · 849 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
[package]
name = "inkstory"
version = "0.2.0"
authors = ["Ruslan Fadeev <kinrany@yandex.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Convert interactive stories between Instory and Ink formats"
homepage = "https://github.com/kinrany/inkstory"
repository = "https://github.com/kinrany/inkstory"
documentation = "https://docs.rs/inkstory"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.40"
itertools = "0.10.0"
lazy_static = "1.4.0"
paw = "1.0.0"
regex = "1.5.4"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
structopt = { version = "0.3.21", features = ["paw"] }
ureq = { version = "2.1.0", features = ["json"] }
url = { version = "2.2.2", features = ["serde"] }
uuid = { version = "0.8.2", features = ["serde"] }