0.1.0
This commit is contained in:
140
Cargo.toml
Normal file
140
Cargo.toml
Normal file
@@ -0,0 +1,140 @@
|
||||
# file: Cargo.toml
|
||||
# version: 1
|
||||
|
||||
[workspace]
|
||||
resolver = "3"
|
||||
members = [
|
||||
"kb-core",
|
||||
"kb-config",
|
||||
"kb-lib",
|
||||
"kb-logging",
|
||||
"kb-program-ids",
|
||||
"kb-pipeline",
|
||||
"kb-rpc",
|
||||
"kb-store",
|
||||
"kb-wallet",
|
||||
"kb-app-demo",
|
||||
]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "MIT"
|
||||
repository = "https://git.sasedev.com/Sasedev/khadhroony-bot3"
|
||||
authors = ["SinuS von SifriduS <sinus@sasedev.net>"]
|
||||
publish = false
|
||||
|
||||
[workspace.dependencies]
|
||||
argon2 = { version = "^0.5", features = ["std", "zeroize"] }
|
||||
async-trait = { version = "^0.1", features = [] }
|
||||
base64 = { version = "^0.22", features = [] }
|
||||
bytemuck = { version = "^1.25", features = ["derive"] }
|
||||
borsh_0_10 = { package = "borsh", version = "^0.10" }
|
||||
borsh = { version = "^1.7", features = ["ascii", "bson", "bytes", "default", "derive", "de_strict_order", "borsh-derive", "indexmap", "std", "rc"] }
|
||||
bs58 = { version = "^0.5", features = ["cb58", "check", "default"] }
|
||||
chacha20poly1305 = { version = "^0.11", features = ["std", "stream"] }
|
||||
chrono = { version = "^0.4", features = ["serde"] }
|
||||
fs2 = { version = "^0.4", features = [] }
|
||||
futures-util = { version = "^0.3", features = ["default", "futures-sink"] }
|
||||
jsonschema = { version = "^0.48", features = [] }
|
||||
mpl-token-metadata = { version = "^5.1", features = ["serde"] }
|
||||
rand = { version = "^0.10", features = ["chacha", "serde", "std", "sys_rng"] }
|
||||
reqwest = { version = "^0.13", default-features = false, features = ["charset", "cookies", "deflate", "form", "gzip", "http2", "json", "multipart", "query", "rustls", "socks", "stream", "zstd"] }
|
||||
rustls = { version = "^0.23", features = ["aws-lc-rs"] }
|
||||
serde = { version = "^1.0", features = ["derive"] }
|
||||
serde_json = { version = "^1.0", features = [] }
|
||||
sha2 = { version = "^0.11", features = ["zeroize"] }
|
||||
solana-account-decoder-client-types = { version = "^4.1", features = ["zstd"] }
|
||||
solana-address-lookup-table-interface = { version = "^3.1", features = ["serde", "wincode"] }
|
||||
solana-compute-budget-interface = { version = "^3.0", features = ["borsh", "serde"] }
|
||||
solana-config-interface = { version = "^2.0", features = ["serde"] }
|
||||
solana-ed25519-program = { version = "^3.0", features = [] }
|
||||
solana-feature-gate-interface = { version = "^4.0", features = ["serde"] }
|
||||
solana-feature-set-interface = { version = "^4.0", features = [] }
|
||||
solana-hash = { version = "^4.5", features = ["atomic", "borsh", "copy", "decode", "default", "rand", "sanitize", "serde", "std", "wincode"] }
|
||||
solana-instruction = { version = "^3.4", features = ["borsh", "default", "serde", "std", "syscalls", "wincode"] }
|
||||
solana-keypair = { version = "^3.1", features = ["seed-derivable"] }
|
||||
solana-loader-v2-interface = { version = "^3.0", features = ["serde"] }
|
||||
solana-loader-v3-interface = { version = "^8.0", features = ["serde", "wincode"] }
|
||||
solana-loader-v4-interface = { version = "^3.1", features = ["serde"] }
|
||||
solana-message = { version = "^4.3", features = ["blake3", "default", "serde", "std", "wincode"] }
|
||||
solana-nonce = { version = "^3.2", features = ["serde", "wincode"] }
|
||||
solana-pubkey = { version = "^4.2", features = ["alloc", "borsh", "bytemuck", "curve25519", "default", "rand", "serde", "sha2", "std", "wincode"] }
|
||||
solana-rpc-client-api = { version = "^4.1", features = [] }
|
||||
solana-sdk = { version = "^4.0", features = ["full"] }
|
||||
solana-sdk-ids = { version = "^3.1", features = [] }
|
||||
solana-secp256k1-program = { version = "^3.0", default-features = false, features = ["serde"] }
|
||||
solana-secp256r1-program = { version = "^3.0", features = [] }
|
||||
solana-signer = { version = "^3.0", features = ["default", "std"] }
|
||||
solana-stake-interface = { version = "^4.3", features = ["borsh", "codama", "serde", "sysvar", "wincode"] }
|
||||
solana-system-interface = { version = "^3.2", features = ["alloc", "serde", "std", "solana-instruction", "wincode"] }
|
||||
solana-sysvar = { version = "^4.1", features = ["serde", "wincode"] }
|
||||
solana-transaction = { version = "^4.1", features = ["blake3", "default", "serde", "std", "verify", "wincode"] }
|
||||
solana-transaction-status-client-types = { version = "^4.1", features = [] }
|
||||
solana-vote-interface = { version = "^6.0", features = ["serde", "wincode"] }
|
||||
solana-zk-elgamal-proof-interface = { version = "^0.1", features = [] }
|
||||
solana-zk-sdk-pod = { version = "^0.1", features = ["serde"] }
|
||||
spl-associated-token-account-interface = { version = "^2.0", features = ["borsh"] }
|
||||
spl-elgamal-registry-interface = { version = "^0.2", features = [] }
|
||||
spl-instruction-padding-interface = { version = "^1.0", features = [] }
|
||||
spl-memo-interface = { version = "^2.1", features = [] }
|
||||
spl-nonce-interface = { version = "^0.1", features = [] }
|
||||
spl-token-confidential-transfer-proof-extraction = { version = "^0.6", features = [] }
|
||||
spl-transfer-hook-interface = { version = "^2.1", features = [] }
|
||||
spl-token-metadata-interface = { version = "^1.0", features = ["serde", "serde-traits"] }
|
||||
spl-token-group-interface = { version = "^0.7", features = [] }
|
||||
spl-token-interface = { version = "^3.0", features = [] }
|
||||
spl-token-2022-interface = { version = "^3.1", features = ["serde"] }
|
||||
sqlx = { version = "^0.9", features = ["bigdecimal", "chrono", "default", "derive", "json", "mysql", "postgres", "runtime-tokio", "sqlite", "tls-rustls", "uuid"] }
|
||||
tauri = { version = "^2.11", features = ["default", "tray-icon"] }
|
||||
tauri-build = { version = "^2.6", features = [] }
|
||||
tauri-plugin-tracing = { version = "^0.3", default-features = false, features = [] }
|
||||
tempfile = { version = "^3.27", features = [] }
|
||||
tokio = { version = "^1.52", features = ["full"] }
|
||||
tokio-stream = { version = "^0.1", features = ["full"] }
|
||||
tokio-tungstenite = { version = "^0.30", default-features = false, features = ["connect", "handshake", "rustls-tls-webpki-roots", "stream", "url"] }
|
||||
tracing = { version = "^0.1", features = [] }
|
||||
tracing-appender = { version = "^0.2", features = [] }
|
||||
tracing-subscriber = { version = "^0.3", features = ["ansi", "env-filter", "chrono", "serde", "json"] }
|
||||
wincode = { version = "^0.5", features = ["alloc", "bytes", "derive", "indexmap", "smallvec", "uuid", "uuid-serde-compat"] }
|
||||
ts-rs = { version = "^12.0", features = ["bigdecimal", "bson", "bytes", "chrono", "indexmap", "ordered-float", "serde_json", "tokio", "url", "uuid"] }
|
||||
yellowstone-grpc-client = { version = "^13.1", features = [] }
|
||||
yellowstone-grpc-proto = { version = "^12.5", features = [] }
|
||||
uuid = { version = "^1.23", features = ["v4", "serde"] }
|
||||
zeroize = { version = "^1.9", features = ["derive", "serde", "std"] }
|
||||
|
||||
[workspace.lints.rust]
|
||||
unsafe_code = "forbid"
|
||||
unreachable_pub = "deny"
|
||||
missing_docs = "warn"
|
||||
|
||||
[workspace.lints.clippy]
|
||||
manual_range_patterns = "allow"
|
||||
unwrap_used = "deny"
|
||||
expect_used = "deny"
|
||||
implicit_return = "deny"
|
||||
needless_return = "allow"
|
||||
useless_vec = "deny"
|
||||
question_mark = "deny"
|
||||
question_mark_used = "deny"
|
||||
needless_match = "allow"
|
||||
manual_ok_err = "allow"
|
||||
manual_unwrap_or = "allow"
|
||||
manual_map = "allow"
|
||||
match_like_matches_macro = "allow"
|
||||
single_match = "allow"
|
||||
manual_unwrap_or_default = "allow"
|
||||
manual_find = "allow"
|
||||
explicit_counter_loop = "allow"
|
||||
get_first = "allow"
|
||||
implicit_saturating_sub = "allow"
|
||||
|
||||
[profile.dev]
|
||||
incremental = true # Compile your binary in smaller steps.
|
||||
|
||||
[profile.release]
|
||||
codegen-units = 1 # Allows LLVM to perform better optimization.
|
||||
lto = true # Enables link-time-optimizations.
|
||||
opt-level = 3 # s Prioritizes small binary size. Use `3` if you prefer speed.
|
||||
panic = "abort" # Higher performance by disabling panic handlers.
|
||||
strip = true # Ensures debug symbols are removed.
|
||||
Reference in New Issue
Block a user