Cargo.toml
1 [package] 2 name = "dt-server" 3 description = "$HOME, $HOME everywhere" 4 version = "0.1.0" 5 edition = "2024" 6 authors = ["Gaoyang Zhang <gy@blurgy.xyz>"] 7 documentation = "https://dt.cli.rs/" 8 license = "MIT OR Apache-2.0" 9 repository = "https://github.com/blurgyy/dt" 10 categories = ["command-line-utilities"] 11 keywords = ["dotfiles", "manager", "syncing", "config"] 12 13 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 14 15 [dependencies] 16 dirs = "5.0.1" 17 dt-core = { path = "../dt-core" } 18 log = "0.4.20" 19 structopt = "0.3.26" 20 tokio = { version = "1.32.0", features = ["full"] } 21 tracing = "0.1" 22 tracing-subscriber = { version = "0.3", features = ["env-filter"] } 23 warp = "0.3.5" 24 25 [target.armv7-unknown-linux-gnueabihf] 26 linker = "arm-linux-gnueabihf-gcc" 27 28 [target.aarch64-unknown-linux-gnu] 29 linker = "aarch64-linux-gnu-gcc" 30 31 # Author: Blurgy <gy@blurgy.xyz> 32 # Date: Oct 19 2021, 09:35 [CST]