-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (43 loc) · 1.28 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "xic"
version = "0.1.1-alpha.2"
edition = "2021"
[registries.crates-io]
protocol = "sparse"
[dependencies]
aws-config = "0.55.2"
aws-sdk-s3 = "0.27.0"
camino = "1.1.4"
clap = { version = "4.2.7", features = ["derive"] }
displaydoc = "0.2.4"
miette = { version = "5.8.0", features = ["fancy"] }
owo-colors = "3.5.0"
plotters = "0.3.4"
serde = { version = "1.0.162", features = ["derive"] }
serde_json = "1.0.96"
thiserror = "1.0.40"
tokio = { version = "1.28.0", features = ["full"] }
tracing = { version = "0.1.37", features = [
"release_max_level_debug",
"max_level_trace"
] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] }
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.0.5"
# The preferred Rust toolchain to use in CI (rustup toolchain syntax)
rust-toolchain-version = "1.67.1"
# CI backends to support (see 'cargo dist generate-ci')
ci = ["github"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-apple-darwin"
]