HomeDisk/core/Cargo.toml

25 lines
767 B
TOML
Raw Normal View History

2022-04-16 18:19:38 +00:00
[package]
2022-06-11 08:19:47 +00:00
name = "homedisk"
2022-04-16 18:19:38 +00:00
authors = ["MedzikUser <nivua1fn@duck.com>"]
homepage = "https://github.com/HomeDisk/cloud"
repository = "https://github.com/HomeDisk/cloud"
license = "GPL-3.0-or-later"
version = "0.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
2022-06-11 08:19:47 +00:00
name = "homedisk"
2022-04-16 18:19:38 +00:00
path = "./src/main.rs"
[dependencies]
2022-06-07 20:36:26 +00:00
anyhow = "1.0.57"
2022-04-16 18:19:38 +00:00
better-panic = "0.3.0"
log = { version = "0.4.17", features = ["max_level_debug", "release_max_level_warn"] }
2022-06-07 20:36:26 +00:00
simplelog = "0.12.0"
tokio = { version = "1.19.2", features = ["rt-multi-thread", "macros"] }
homedisk-database = { path = "../database" }
homedisk-server = { path = "../server" }
homedisk-types = { path = "../types", features = ["config"] }