# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "soroban-kit" version = "0.1.11" authors = ["Fred Kyung-jin Rezeau "] description = "Fast, lightweight functions and macros with lean, targeted functionality for Soroban smart contract development." readme = "README.md" keywords = [ "soroban", "stellar", "blockchain", "smart-contract", ] license-file = "LICENSE" repository = "https://github.com/fredericrezeau/soroban-kit" [lib] doctest = false [dependencies.soroban-macros] version = "0.1.11" optional = true default-features = false [dependencies.soroban-tools] version = "0.1.11" optional = true default-features = false [features] circuit-breaker = [ "soroban-macros/circuit-breaker", "soroban-tools/circuit-breaker", "state-machine", ] commitment-scheme = [ "soroban-macros/commitment-scheme", "soroban-tools/commitment-scheme", ] default = [ "commitment-scheme", "storage", "state-machine", "circuit-breaker", "oracle", "utils", ] mock-storage = [ "soroban-macros/mock-storage", "soroban-tools/mock-storage", "storage", ] oracle = [ "soroban-macros/oracle", "soroban-tools/oracle", ] state-machine = [ "soroban-macros/state-machine", "soroban-tools/state-machine", ] storage = [ "soroban-macros/storage", "soroban-tools/storage", ] utils = [ "soroban-macros/utils", "soroban-tools/utils", ]