File: Cargo.toml

package info (click to toggle)
rust-coreutils 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 505,620 kB
  • sloc: ansic: 103,594; asm: 28,570; sh: 8,910; python: 5,581; makefile: 472; cpp: 97; javascript: 72
file content (90 lines) | stat: -rw-r--r-- 1,985 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# 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 = "2015"
rust-version = "1.71.0"
name = "libloading"
version = "0.8.9"
authors = ["Simonas Kazlauskas <libloading@kazlauskas.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bindings around the platform's dynamic library loading primitives with greatly improved memory safety."
documentation = "https://docs.rs/libloading/"
readme = "README.mkd"
keywords = [
    "dlopen",
    "load",
    "shared",
    "dylib",
]
categories = ["api-bindings"]
license = "ISC"
repository = "https://github.com/nagisa/rust_libloading/"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "libloading_docs",
]

[lib]
name = "libloading"
path = "src/lib.rs"

[[test]]
name = "constants"
path = "tests/constants.rs"

[[test]]
name = "functions"
path = "tests/functions.rs"

[[test]]
name = "library_filename"
path = "tests/library_filename.rs"

[[test]]
name = "markers"
path = "tests/markers.rs"

[[test]]
name = "windows"
path = "tests/windows.rs"

[dev-dependencies.libc]
version = "0.2"

[dev-dependencies.static_assertions]
version = "1.1"

[target."cfg(unix)".dependencies.cfg-if]
version = "1"

[target."cfg(windows)".dependencies.windows-link]
version = "0.2"

[target."cfg(windows)".dev-dependencies.windows-sys]
version = "0.61"
features = ["Win32_Foundation"]

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
    "cfg(libloading_docs)",
    'cfg(target_os, values("cygwin"))',
]