# 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 = "sibyl" version = "0.6.18" authors = ["Alex Demenchuk "] build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "An OCI-based (synchronous or asynchronous) interface between Rust applications and Oracle databases" homepage = "https://quietboil.github.io/sibyl" documentation = "https://docs.rs/sibyl" readme = "README.md" keywords = [ "database", "sql", "oracle", "ffi", "async", ] categories = ["database"] license = "MIT" repository = "https://github.com/quietboil/sibyl" [package.metadata.docs.rs] features = [ "blocking", "nonblocking", "tokio", ] rustdoc-args = [ "--cfg", "docsrs", ] [profile.test] opt-level = 2 [lib] name = "sibyl" path = "src/lib.rs" [[example]] name = "arg_as_slice" path = "examples/arg_as_slice.rs" [[example]] name = "async_book_intro" path = "examples/async_book_intro.rs" [[example]] name = "async_connection_per_task" path = "examples/async_connection_per_task.rs" [[example]] name = "async_pooled_sessions" path = "examples/async_pooled_sessions.rs" [[example]] name = "async_readme" path = "examples/async_readme.rs" [[example]] name = "binding" path = "examples/binding.rs" [[example]] name = "book_intro" path = "examples/book_intro.rs" [[example]] name = "connection_per_thread" path = "examples/connection_per_thread.rs" [[example]] name = "dyn_args" path = "examples/dyn_args.rs" [[example]] name = "dyn_args_slice" path = "examples/dyn_args_slice.rs" [[example]] name = "inf_async_pooled_sessions" path = "examples/inf_async_pooled_sessions.rs" [[example]] name = "inf_pooled_sessions" path = "examples/inf_pooled_sessions.rs" [[example]] name = "null_empty_string" path = "examples/null_empty_string.rs" [[example]] name = "null_nvl" path = "examples/null_nvl.rs" [[example]] name = "null_option" path = "examples/null_option.rs" [[example]] name = "pooled_connections" path = "examples/pooled_connections.rs" [[example]] name = "pooled_sessions" path = "examples/pooled_sessions.rs" [[example]] name = "readme" path = "examples/readme.rs" [[test]] name = "args" path = "tests/args.rs" [[test]] name = "data_types" path = "tests/data_types.rs" [[test]] name = "dyn_args" path = "tests/dyn_args.rs" [[test]] name = "lobs" path = "tests/lobs.rs" [[test]] name = "multithreaded" path = "tests/multithreaded.rs" [[test]] name = "nvl" path = "tests/nvl.rs" [[test]] name = "option_args" path = "tests/option_args.rs" [[test]] name = "slice_args" path = "tests/slice_args.rs" [dependencies.actix-rt] version = "2.10" optional = true default-features = false [dependencies.async-global-executor] version = "2.4" optional = true [dependencies.async-once-cell] version = "0.5" optional = true [dependencies.async-rt] version = "1.6" features = ["unstable"] optional = true package = "async-std" [dependencies.libc] version = "0.2" [dependencies.once_cell] version = "1.19" [dependencies.parking_lot] version = "0.12" [dependencies.tokio-rt] version = "1.39" features = ["rt"] optional = true package = "tokio" [dev-dependencies.tokio-rt] version = "1.39" features = [ "rt", "rt-multi-thread", ] package = "tokio" [features] actix = ["actix-rt"] async-global = ["async-global-executor"] async-std = ["async-rt"] blocking = [] nonblocking = ["async-once-cell"] tokio = ["tokio-rt"] unsafe-direct-binds = []