-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
20 lines (18 loc) · 694 Bytes
/
Cargo.toml
File metadata and controls
20 lines (18 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "starknet_address_checker"
version = "0.1.0"
edition = "2021"
authors = ["Josh_dfG agboolajoshua161@gmail.com"]
description = "A library that can be used to distinguish between starknet smart wallets and deployed smart contracts and also validate Starknet addresses if they are valid or not and also."
license = "MIT"
repository ="https://github.com/JoshdfG/SN_Address_checker_Rust_impl"
[profile.release]
opt-level = 3 # Aggressive optimizations
lto = true # Link-Time Optimization
codegen-units = 1 # Fewer codegen units for better optimization
[dependencies]
starknet = "0.7.0"
tokio = { version = "1.0", features = ["full"] }
regex = "1.0"
anyhow = "1.0"
url = "2.0"