# 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 = "2018" name = "safina" version = "0.6.0" authors = ["Michael Leonhard "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Safe async runtime" readme = "Readme.md" keywords = [ "async", "safe", "runtime", "future", ] categories = ["asynchronous"] license = "Apache-2.0" repository = "https://gitlab.com/leonhard-llc/safina-rs" [package.metadata.docs.rs] all-features = true [lib] name = "safina" path = "src/lib.rs" [[test]] name = "async_test_test" path = "tests/async_test_test.rs" [[test]] name = "executor_test" path = "tests/executor_test.rs" [[test]] name = "net_tcp_client_test" path = "tests/net_tcp_client_test.rs" [[test]] name = "net_tcp_listener_test" path = "tests/net_tcp_listener_test.rs" [[test]] name = "net_tcp_server_test" path = "tests/net_tcp_server_test.rs" [[test]] name = "net_tcp_stream_test" path = "tests/net_tcp_stream_test.rs" [[test]] name = "select_option_ab_test" path = "tests/select_option_ab_test.rs" [[test]] name = "select_option_abc_test" path = "tests/select_option_abc_test.rs" [[test]] name = "select_option_abcd_test" path = "tests/select_option_abcd_test.rs" [[test]] name = "select_option_abcde_test" path = "tests/select_option_abcde_test.rs" [[test]] name = "select_test" path = "tests/select_test.rs" [[test]] name = "sync_channel_test" path = "tests/sync_channel_test.rs" [[test]] name = "sync_mutex_test" path = "tests/sync_mutex_test.rs" [[test]] name = "test_util" path = "tests/test_util.rs" [[test]] name = "threadpool_atomic_counter_test" path = "tests/threadpool_atomic_counter_test.rs" [[test]] name = "threadpool_sequential_test" path = "tests/threadpool_sequential_test.rs" [[test]] name = "threadpool_test" path = "tests/threadpool_test.rs" [[test]] name = "timer_deadline_future_test" path = "tests/timer_deadline_future_test.rs" [[test]] name = "timer_sleep_future_test" path = "tests/timer_sleep_future_test.rs" [[test]] name = "timer_test" path = "tests/timer_test.rs" [dependencies.safina-macros] version = "0.1.3" optional = true [dev-dependencies.rusty-fork] version = "^0.3" [features] async_test = [ "executor", "timer", "safina-macros", ] default = [ "executor", "net", "select", "sync", "threadpool", "timer", ] executor = [] net = [] select = [] sync = [] testing = [] threadpool = [] timer = []