-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 1.16 KB
/
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
[package]
name = "managed-lhapdf"
version = "0.3.4"
authors = ["Christopher Schwan <[email protected]>"]
edition = "2021"
license = "GPL-3.0-or-later"
repository = "https://github.com/cschwan/managed-lhapdf"
readme = "README.md"
keywords = ["high-energy-physics", "physics"]
categories = ["science"]
description = "(Unofficial) Rust bindings for the LHAPDF C++ library"
rust-version = "1.70.0"
[dependencies]
anyhow = "1.0.79"
cxx = "1.0.65"
dirs = { optional = true, version = "5.0.1" }
flate2 = { optional = true, version = "1.0.22" }
fs2 = { optional = true, version = "0.4.3" }
ureq = { version = "2.10.1", optional = true }
serde = { features = ["derive"], version = "1.0.130" }
tar = { optional = true, version = "0.4.38" }
thiserror = "1.0.30"
toml = { features = ["display", "parse"], optional = true, version = "0.8.12" }
url = { features = ["serde"], optional = true, version = "2.5.2" }
[build-dependencies]
cxx-build = "1.0.107"
pkg-config = "0.3"
[features]
default = ["managed"]
docs-only = []
managed = ["dep:dirs", "dep:flate2", "dep:fs2", "dep:tar", "dep:toml", "dep:ureq", "dep:url"]
static = []
[package.metadata.docs.rs]
features = [ "docs-only" ]