-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 910 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 910 Bytes
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
[package]
name = "muzzman-lib"
description = "Modulabile Download manager"
version = "0.3.5"
edition = "2021"
authors = ["konkitoman"]
repository = "https://github.com/ManStudio/MuzzMan-Lib"
license = "MPL-2.0"
keywords = ["download", "upload"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
[workspace]
members = ["macros", "local-session", "module-http"]
[profile.dev]
panic = 'unwind'
[profile.release]
panic = 'unwind'
debug = false
[target.'cfg(target_os = "windows")'.dependencies]
dirs = "4.0.0"
[target.'cfg(target_os = "linux")'.dependencies]
dirs = "4.0.0"
[dependencies]
get_ref = "0.1.0"
muzzman-lib-macros = {path = "./macros"}
# muzzman-lib-macros = "0.1.3"
serde = {version = "1.0.152", features = ["derive", "std", "rc", "alloc"]}
bytes-kman = "0.3"
log = { version = "0.4.17", features = ["std"] }
once_cell = "1"