-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
55 lines (47 loc) · 1.76 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "scrypto_statictypes"
version = "0.5.0"
rust-version = "1.60"
authors = ["devmannic <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/devmannic/scrypto_statictypes"
documentation = "https://devmannic.github.io/scrypto_statictypes"
homepage = "https://github.com/devmannic/scrypto_statictypes"
description = """
A library to increase security and productivity when developing Radix blueprints with Scrypto.
"""
keywords = ["scrypto", "radix", "types", "security", "bucketof"]
categories = ["cryptography::cryptocurrencies", "development-tools"]
edition = "2021"
include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"]
exclude = ["examples/", "misc/", "utils/"]
[package.metadata.docs.rs]
# To build locally:
# RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --all-features --no-deps --open
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]
[package.metadata.playground]
features = []
[workspace]
members = ["."]
default-members = ["."]
#exclude = ["examples/.*"]
[features]
# Meta-features:
default = []
nightly = [] # enables optimizations or features requiring nightly rust
# package features
runtime_typechecks = []
[dependencies]
sbor = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.4.1" }
scrypto = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.4.1" }
[dev-dependencies]
radix-engine = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.4.1" }
[profile.release]
opt-level = 's' # Optimize for size.
lto = true # Enable Link Time Optimization.
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = 'abort' # Abort on panic.
[lib]
crate-type = ["cdylib", "lib"]