-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
96 lines (82 loc) Β· 2.93 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
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
91
92
93
94
95
96
# π»ββοΈπͺ azalia: Noelware's Rust commons library.
# Copyright (c) 2024-2025 Noelware, LLC. <[email protected]>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
[package]
name = "azalia-remi"
description = "π»ββοΈπͺ Allows to create a union enum for each official Remi crate"
version.workspace = true
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(noeldoc)'] }
[features]
default = ["export-crates"]
all = ["gridfs", "azure", "s3", "fs"]
gridfs = ["dep:remi-gridfs", "remi-gridfs/export-crates"]
azure = ["dep:remi-azure", "remi-azure/export-azure"]
s3 = ["dep:remi-s3", "remi-s3/export-crates"]
fs = ["dep:remi-fs"]
unstable = [
"remi/unstable",
"remi-gridfs?/unstable",
"remi-s3?/unstable",
"remi-fs?/unstable",
]
export-crates = [
"remi-gridfs?/export-crates",
"remi-azure?/export-azure",
"remi-s3?/export-crates",
]
tracing = [
"remi-fs?/tracing",
"remi-s3?/tracing",
"remi-azure?/tracing",
"remi-gridfs?/tracing",
]
serde = [
"dep:serde",
"remi-fs?/serde",
"remi-s3?/serde",
"remi-azure?/serde",
"remi-gridfs?/serde",
]
log = ["remi-fs?/log", "remi-s3?/log", "remi-azure?/log", "remi-gridfs?/log"]
#### remi-fs
file-format = ["remi-fs?/file-format"]
serde_json = ["remi-fs?/serde_json"]
serde_yaml_ng = ["remi-fs?/serde_yaml_ng"]
[dependencies]
remi = "0.10.1"
remi-azure = { version = "0.10.1", optional = true }
remi-fs = { version = "0.10.1", optional = true }
remi-gridfs = { version = "0.10.1", optional = true }
remi-s3 = { version = "0.10.1", optional = true }
serde = { workspace = true, optional = true }
# used for README doctest
[dev-dependencies]
tokio = { version = "1.41.1", features = ["rt", "macros"] }
[package.metadata.docs.rs]
all-features = true
[package.metadata.noeldoc]
all-features = true