Mercurial > touhou
comparison Cargo.toml @ 757:21b186be2590
Split the Rust version into multiple crates.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Tue, 05 Jan 2021 02:16:32 +0100 |
parents | fc937d93a57c |
children | f6c287745a67 |
comparison
equal
deleted
inserted
replaced
756:4d91790cf8ab | 757:21b186be2590 |
---|---|
1 [package] | 1 [workspace] |
2 name = "touhou" | |
3 version = "0.1.0" | |
4 authors = ["Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>"] | |
5 edition = "2018" | |
6 description = "A collection of tools to work with Touhou data" | |
7 homepage = "https://pytouhou.linkmauve.fr" | |
8 license = "GPL-3.0-or-later" | |
9 | 2 |
10 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | 3 members = [ |
4 "formats", | |
5 "interpreters", | |
6 "runners", | |
7 "utils", | |
8 ] | |
11 | 9 |
12 [dependencies] | 10 [patch.crates-io] |
13 nom = { version = "6", default-features = false, features = ["alloc"] } | 11 touhou-formats = { path = "formats" } |
14 encoding_rs = "0.8" | 12 touhou-interpreters = { path = "interpreters" } |
15 image = { version = "0.23", default-features = false, features = ["png", "jpeg"] } | 13 touhou-runners = { path = "runners" } |
16 bitflags = "1" | 14 touhou-utils = { path = "utils" } |
17 luminance = "0.39" | |
18 luminance-glfw = { version = "0.12", default-features = false, features = ["log-errors"] } | |
19 luminance-derive = "0.5" | |
20 ears = "0.8" |