generated from Yakiyo/rust-codespace-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (32 loc) · 839 Bytes
/
Cargo.toml
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
[package]
name = 'dsm'
description = 'Simplified version manager for the Dart SDK'
version = '1.0.2'
authors = ['Yakiyo <yakiyo1206@gmail.com>']
edition = '2021'
license = 'MIT'
repository = 'https://github.com/Yakiyo/dsm'
homepage = 'https://github.com/Yakiyo/dsm'
exclude = ['.devcontainer/**', '.github/**', '.vscode/**', 'tests/**', '.gitignore', 'tools/**', 'site/**', 'pkg/**']
[dependencies]
clap = { version = '3.2.25', features = ['derive', 'env'] }
anyhow = '1.0.71'
dart-semver = '0.1.3'
human-panic = '1.1.4'
tempfile = '3.5.0'
ureq = '2.6.2'
yansi = '0.5.1'
zip = '0.6.5'
serde_json = "1.0.99"
clap_complete = "3.2.5"
home = "0.5.5"
indicatif = "0.17.5"
log = "0.4.19"
env_logger = "0.10.0"
[target.'cfg(windows)'.dependencies]
junction = '1.0.0'
[profile.release]
panic = 'abort'
codegen-units = 1
lto = true
strip = true