mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2025-12-11 20:15:30 +01:00
* Remove dependency on once_cell and use std types * Bump MSRV across the project to 1.81 * Cargo fmt * Update rust-toolchain to 1.81
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "sd-core-file-path-helper"
|
|
version = "0.1.0"
|
|
|
|
authors = ["Ericson Soares <ericson@spacedrive.com>"]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
# Inner Core Sub-crates
|
|
sd-core-prisma-helpers = { path = "../prisma-helpers" }
|
|
sd-core-sync = { path = "../sync" }
|
|
|
|
# Spacedrive Sub-crates
|
|
sd-prisma = { path = "../../../crates/prisma" }
|
|
sd-utils = { path = "../../../crates/utils" }
|
|
|
|
# Workspace dependencies
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
prisma-client-rust = { workspace = true }
|
|
regex = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["fs"] }
|
|
tracing = { workspace = true }
|
|
|
|
# Specific File Path Helper dependencies
|
|
[target.'cfg(target_os = "windows")'.dependencies.windows]
|
|
features = ["Win32_Security", "Win32_Storage_FileSystem"]
|
|
version = "0.58"
|