diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-10 13:11:11 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-10 13:11:11 -0600 |
| commit | 01959b16a21b22b5df5f16569c2a8e8f92beecef (patch) | |
| tree | 32afa5d747c5466345c59ec52161a7cba3d6d755 /vendor/security-framework-sys/Cargo.toml | |
| parent | ff30574117a996df332e23d1fb6f65259b316b5b (diff) | |
chore: vendor dependencies
Diffstat (limited to 'vendor/security-framework-sys/Cargo.toml')
| -rw-r--r-- | vendor/security-framework-sys/Cargo.toml | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/vendor/security-framework-sys/Cargo.toml b/vendor/security-framework-sys/Cargo.toml new file mode 100644 index 00000000..db5e37e4 --- /dev/null +++ b/vendor/security-framework-sys/Cargo.toml @@ -0,0 +1,92 @@ +# 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" +rust-version = "1.65" +name = "security-framework-sys" +version = "2.14.0" +authors = [ + "Steven Fackler <sfackler@gmail.com>", + "Kornel <kornel@geekhood.net>", +] +build = false +autolib = false +autobins = false +autoexamples = false +autotests = false +autobenches = false +description = "Apple `Security.framework` low-level FFI bindings" +homepage = "https://lib.rs/crates/security-framework-sys" +readme = "README.md" +keywords = [ + "ffi", + "iOS", + "TLS", + "SSL", + "crypto", +] +categories = [ + "os::macos-apis", + "external-ffi-bindings", +] +license = "MIT OR Apache-2.0" +repository = "https://github.com/kornelski/rust-security-framework" + +[package.metadata.docs.rs] +targets = [ + "x86_64-apple-darwin", + "aarch64-apple-ios", +] + +[lib] +name = "security_framework_sys" +path = "src/lib.rs" + +[dependencies.core-foundation-sys] +version = "0.8.6" + +[dependencies.libc] +version = "0.2.150" + +[features] +OSX_10_10 = ["OSX_10_9"] +OSX_10_11 = ["OSX_10_10"] +OSX_10_12 = ["OSX_10_11"] +OSX_10_13 = ["OSX_10_12"] +OSX_10_14 = ["OSX_10_13"] +OSX_10_15 = ["OSX_10_14"] +OSX_10_9 = [] +default = ["OSX_10_12"] + +[badges.maintenance] +status = "looking-for-maintainer" + +[lints.clippy] +cast_possible_truncation = "allow" +cast_possible_wrap = "allow" +cast_sign_loss = "allow" +if_not_else = "allow" +inline_always = "allow" +items_after_statements = "allow" +iter_not_returning_iterator = "allow" +map_unwrap_or = "allow" +missing_errors_doc = "allow" +missing_panics_doc = "allow" +module_name_repetitions = "allow" +redundant_closure_for_method_calls = "allow" +similar_names = "allow" +unnested_or_patterns = "allow" +wildcard_imports = "allow" + +[lints.clippy.pedantic] +level = "warn" +priority = -100 |
