-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
53 lines (47 loc) · 987 Bytes
/
Cargo.toml
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
[package]
name = "magic"
description = "High level bindings for the `libmagic` C library"
readme = "README-crate.md"
license = "MIT OR Apache-2.0"
keywords = [
"magic",
"file",
"ffi",
"bindings",
]
categories = [
"api-bindings",
"filesystem",
"parsing",
]
repository = "https://github.com/robo9k/rust-magic.git"
authors = [
"Daniel Micay <danielmicay@gmail.com>",
"Petar Radošević <petar@wunki.org>",
"lilydjwg <lilydjwg@gmail.com>",
"Jeff Belgum <belgum@bastille.io>",
"Onur Aslan <onur@onur.im>",
"robo9k <robo9k@symlink.io>",
]
version = "0.16.2"
include = [
"/src/",
]
edition = "2018"
rust-version = "1.56"
[package.metadata]
msrv = "1.56.0"
[package.metadata.docs.rs]
all-features = true
targets = []
[badges]
maintenance = { status = "passively-maintained" }
[dependencies]
bitflags = "2.5.0"
magic-sys = "0.3.0"
thiserror = "1.0.61"
[dependencies.libc]
version = "0.2.155"
default-features = false
[dev-dependencies]
static_assertions = "1.1.0"