Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ members = [
# par dépendance interne — et une seule oubliée fait échouer la publication après
# que les précédentes soient parties, ce qui ne se rattrape pas.
[workspace.package]
version = "0.7.0"
version = "0.7.1"

# Les dépendances internes portent aussi la version, donc elles se déclarent ici
# pour la même raison. `path` sert au développement, `version` à ce que cargo
# écrit dans le paquet publié : les deux doivent coexister, et rester d'accord.
[workspace.dependencies]
rustmotion-core = { path = "crates/rustmotion-core", version = "0.7.0" }
rustmotion-components = { path = "crates/rustmotion-components", version = "0.7.0" }
rustmotion-html = { path = "crates/rustmotion-html", version = "0.7.0" }
rustmotion-core = { path = "crates/rustmotion-core", version = "0.7.1" }
rustmotion-components = { path = "crates/rustmotion-components", version = "0.7.1" }
rustmotion-html = { path = "crates/rustmotion-html", version = "0.7.1" }

# Optimize dependencies even in dev builds. Our own crates stay at opt-level 0
# (fast incremental + debuggable), but heavy compute in deps (image encoding,
Expand Down
1 change: 1 addition & 0 deletions crates/rustmotion-components/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edition = "2021"
description = "Component library for rustmotion (51 components)"
license = "MIT"
repository = "https://github.com/LeadcodeDev/rustmotion"
readme = "../../README.md"

[features]
default = ["lottie-native"]
Expand Down
1 change: 1 addition & 0 deletions crates/rustmotion-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edition = "2021"
description = "Core types, traits, and rendering utilities for rustmotion"
license = "MIT"
repository = "https://github.com/LeadcodeDev/rustmotion"
readme = "../../README.md"

[dependencies]
serde = { version = "1", features = ["derive"] }
Expand Down
1 change: 1 addition & 0 deletions crates/rustmotion-html/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edition = "2021"
description = "HTML/CSS front-end transpiler for rustmotion scenarios"
license = "MIT"
repository = "https://github.com/LeadcodeDev/rustmotion"
readme = "../../README.md"

[dependencies]
html5ever = "0.39.0"
Expand Down
1 change: 1 addition & 0 deletions crates/rustmotion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edition = "2021"
description = "A CLI tool that renders motion design videos from JSON scenarios. No browser, no Node.js — just a single Rust binary."
license = "MIT"
repository = "https://github.com/LeadcodeDev/rustmotion"
readme = "../../README.md"

[lib]
path = "src/lib.rs"
Expand Down
Loading