-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
26 lines (22 loc) · 869 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
[package]
# Manganese is a rusting catalyst. Manganis makes it faster to collect rust assets (and has almost no google search results)
name = "manganis"
version.workspace = true
authors = ["Evan Almloff"]
edition = "2021"
description = "Ergonomic, automatic, cross crate asset collection and optimization"
license = "MIT OR Apache-2.0"
repository = "https://github.com/DioxusLabs/manganis/"
homepage = "https://dioxuslabs.com"
keywords = ["assets"]
[lib]
[dependencies]
manganis-macro = { path = "./macro", version = "0.3.0-alpha.3", optional = true }
[workspace]
package.version = "0.3.0-alpha.3"
members = ["macro", "common", "cli-support", "test-package", "test-package/test-package-dependency", "test-package/test-package-nested-dependency"]
[features]
default = ["macro"]
html = []
url-encoding = ["manganis-macro/url-encoding"]
macro = ["dep:manganis-macro"]