-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 786 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 786 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
[package]
name = "wechsel"
version = "0.2.4"
edition = "2021"
rust-version = "1.74.1"
authors = ["JustSomeRandomUsername"]
repository = "https://github.com/JustSomeRandomUsername/wechsel"
readme = "README.md"
license = "MIT"
categories = ["command-line-utilities"]
keywords = ["organizing", "project"]
description = "Organize your Computer with projects."
[workspace]
resolver = "2"
members = ["wechsel_testing"]
[lib]
[dependencies]
clap = { version = "4.5.4", features = ["std", "derive", "help"], default-features = false}
dirs = ">=5.0.1, < 7.0.0"
serde = { version = "1.0.197", features = ["derive"], default-features = false }
serde_json = "1.0.115"
dialoguer = { default-features = false, version = "0.11.0"}
[profile.release]
debug=false
[features]
default=[]
deserial=[]