-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (69 loc) · 2.29 KB
/
Copy pathCargo.toml
File metadata and controls
73 lines (69 loc) · 2.29 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[workspace]
members = ["crates/sc-composer", "crates/sc-composer-beads", "crates/sc-compose", "crates/sc-sha", "bindings/python", "bindings/sc-composer-beads-python", "bindings/sc-sha-python", "bindings/sc-sha-go"]
resolver = "2"
[workspace.package]
version = "1.6.1"
authors = ["Randlee"]
edition = "2024"
license = "MIT"
# Rust 1.94.1 is the effective workspace floor because the CLI observability
# integration depends on sc-observability 1.2.0.
rust-version = "1.94.1"
repository = "https://github.com/randlee/sc-compose"
homepage = "https://randlee.github.io/sc-compose"
[workspace.dependencies]
anyhow = "1"
clap = { version = "4.5", features = ["derive"] }
glob = "0.3"
minijinja = { version = "2.12", features = ["custom_syntax", "json"] }
sc-observability = "=1.2.0"
sc-observability-types = "=1.2.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
quick-xml = "0.41"
sc-sha = { path = "crates/sc-sha", version = "1.6.1" }
sc-composer = { path = "crates/sc-composer", version = "1.6.1" }
sha2 = "0.10"
similar = "2"
time = { version = "0.3", features = ["formatting", "macros"] }
thiserror = "2"
toml = "0.8"
ulid = "1"
uniffi = "=0.31.0"
uniffi_build = "=0.31.0"
[workspace.lints.rust]
ambiguous_negative_literals = "warn"
missing_debug_implementations = "warn"
redundant_imports = "warn"
redundant_lifetimes = "warn"
trivial_numeric_casts = "warn"
unsafe_code = "forbid"
unsafe_op_in_unsafe_fn = "warn"
unused_lifetimes = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
allow_attributes_without_reason = "warn"
as_pointer_underscore = "warn"
assertions_on_result_states = "warn"
clone_on_ref_ptr = "warn"
deref_by_slicing = "warn"
disallowed_script_idents = "warn"
empty_drop = "warn"
empty_enum_variants_with_brackets = "warn"
empty_structs_with_brackets = "warn"
fn_to_numeric_cast_any = "warn"
if_then_some_else_none = "warn"
literal_string_with_formatting_args = "allow"
map_err_ignore = "warn"
redundant_type_annotations = "warn"
renamed_function_params = "warn"
semicolon_outside_block = "warn"
implicit_clone = "warn"
unnecessary_safety_comment = "warn"
unnecessary_safety_doc = "warn"
unneeded_field_pattern = "warn"
undocumented_unsafe_blocks = "warn"
unused_result_ok = "warn"