-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (32 loc) · 931 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
27
28
29
30
31
32
33
[package]
name = "kipt"
version = "0.1.5"
edition = "2021"
authors = ["glihm <dev@glihm.dev>"]
license = "MIT OR Apache-2.0"
keywords = ["starknet", "web3"]
readme = "README.md"
repository = "https://github.com/glihm/kipt"
description = """
Rust and Lua interpreter tool for easy contracts management on Starknet
"""
[dependencies]
anyhow = "1"
async-trait = "0.1.73"
chrono = "0.4"
clap = { version = "4.2", features = [ "derive" ] }
clap_complete = "4.3"
futures = "0.3"
lazy_static = "1.4"
mlua = { version = "0.9", features = [ "lua54", "vendored", "async" ] }
regex = "1.8.4"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = { version = "1.0.99", features = ["preserve_order"] }
serde_with = "2.3.3"
starknet = "0.7.0"
thiserror = "1.0.40"
tokio = { version = "1", features = ["full"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing = "0.1"
tracing-log = "0.1"
url = "2.4"