-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
38 lines (31 loc) · 988 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
36
37
38
[package]
name = "lilt"
version = "0.7.0"
edition = "2021"
description = "A simple, dependency free library for running interruptable, transition based animations as a function of time."
repository = "https://github.com/ejjonny/lilt"
license = "MIT"
keywords = ["animation", "interpolation"]
authors = ["ejjonny"]
[lib]
crate-type = ["lib"]
[[example]]
name = "iced-minimal"
path = "examples/iced-minimal/src/main.rs"
[[example]]
name = "iced-demo"
path = "examples/iced-demo/src/main.rs"
[[example]]
name = "iced-indicator"
path = "examples/iced-indicator/src/main.rs"
[[example]]
name = "gpui-example"
path = "examples/gpui-example/src/main.rs"
[dev-dependencies]
iced = { git = "https://github.com/iced-rs/iced", rev = "169667ef1b4fa754ed1edb5fa0e845aede2638fb", features = [
"canvas",
"tokio",
"svg",
] }
[target.'cfg(target_os = "macos")'.dev-dependencies]
gpui = { git = "https://github.com/zed-industries/zed", rev = "5b1ea7eda0bba40e222f7d904ec65e5848f45eee" }