forked from cwnt-io/candid-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 1.02 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
[package]
name = "candid-gen"
version = "0.1.0"
edition = "2021"
description = """
CLI tool that automates the generation of Candid interface files from Rust canisters \
for Internet Computer (IC) projects.
"""
authors = ["cwnt.io", "Gustavo Basso <gubasso@cwnt.io>", "Ismael Pamplona <isma@cwnt.io>"]
license-file = "LICENSE"
# homepage = "https://github.com/cwnt-io/candid-gen"
repository = "https://github.com/cwnt-io/candid-gen"
keywords = ["candid", "canister", "internet-computer", "idl", "tools"]
categories = ["command-line-utilities", "development-tools", "config", "wasm"]
[package.metadata.release]
allow-branch = ["master","staging", "develop"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.7", features = ["derive"] }
cmd_lib = "1.9.4"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
[dev-dependencies]
tempfile = "3.10.1"
serial_test = "3.1.1"
once_cell = "1.19.0"
candid_parser = "0.1.4"