-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (54 loc) · 1.17 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (54 loc) · 1.17 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[workspace]
members = [
"crates/atla-cli",
"crates/atla-core",
"crates/atla-jira-api",
"crates/atla-confluence-api",
"crates/atla-confluence-v1-api",
]
resolver = "3"
[workspace.package]
edition = "2024"
license = "MIT"
repository = "https://github.com/NeoHsu/atla"
homepage = "https://github.com/NeoHsu/atla"
rust-version = "1.91"
[workspace.dependencies]
anyhow = "1"
chrono = { version = "0.4", default-features = false, features = [
"clock",
"serde",
] }
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4"
comfy-table = "7"
dialoguer = "0.12"
directories = "6"
keyring = { version = "3", features = [
"apple-native",
"linux-native",
"windows-native",
] }
httpdate = "1"
reqwest = { version = "0.13", default-features = false, features = [
"json",
"multipart",
"rustls",
] }
base64 = "0.23"
libc = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
semver = "1"
sha2 = "0.11"
shell-words = "1"
thiserror = "2"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
toml = "1.1"
tempfile = "3"
proptest = "1"
wiremock = "0.6"
# Config for 'cargo dist'
[profile.dist]
inherits = "release"
lto = "thin"