-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1.14 KB
/
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
# Copyright © 2022-2023 The Nucleide Contributors.
#
# Licensed under any of:
# - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
# - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
# - MIT License (https://mit-license.org/)
# At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
# LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).
[package]
name = "nucleide"
version = "0.1.0"
edition = "2021"
rust-version = "1.70"
description = """
A crate to manipulate custom sections of a WebAssembly module to view/edit
application metadata.
"""
license = "Apache-2.0 OR BSL-1.0 OR MIT"
documentation = "https://docs.rs/nucleide"
homepage = "https://github.com/ardaku/nucleide/blob/stable/CHANGELOG.md"
repository = "https://github.com/ardaku/nucleide/"
include = ["src/", "README.md"]
keywords = ["metadata", "quantii", "daku", "app", "nucleic"]
categories = [
"development-tools::build-utils",
"os",
"parser-implementations",
"value-formatting",
"wasm",
]
readme = "README.md"
[dependencies.num_enum]
version = "0.7"
[dependencies.parity-wasm]
version = "0.45"
default-features = false