-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
44 lines (38 loc) · 1.06 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
[package]
name = "rustic"
version = "0.1.9"
authors = ["Benji Zhai"]
edition = "2021"
rust-version = "1.65.0"
build = "build.rs"
description = "Library for building canisters on the Internet Computer."
license = "MIT OR Apache-2.0"
repository = "https://github.com/internet-computer-protocol/rustic/"
keywords = ["icp", "blockchain", "smart-contracts"]
categories = ["cryptography::cryptocurrencies", "finance", "wasm"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# candid = { version = "0.9", features = ["parser"] }
candid = "0.10"
ciborium = "0.2"
ic-cdk = "0.13"
ic-cdk-macros = "0.9"
ic-stable-structures = "0.6"
num-traits = "0.2"
serde = "1.0"
serde_bytes = "0.11"
rustic-macros = "0.1"
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["json"]}
[features]
default = ["access-roles", "reentrancy", "lifecycle"]
access = []
access-roles = ["access"]
export-candid = []
lifecycle = []
logging = []
stable-logging = []
pausable = ["access"]
reentrancy = []
[dev-dependencies]
proptest = "1.4.0"