-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (31 loc) · 960 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
39
40
41
42
43
44
[package]
name = "nemo"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2"
bitflags = "1.0"
[dependencies.ffi]
package = "nemo-sys"
path = "./nemo-sys"
[dependencies.atk]
git = "https://github.com/gtk-rs/gtk3-rs"
[dependencies.atk-sys]
git = "https://github.com/gtk-rs/gtk3-rs"
[dependencies.glib]
git = "https://github.com/gtk-rs/gtk-rs-core"
[dependencies.glib-sys]
git = "https://github.com/gtk-rs/sys" # all gtk-rs sys crates are in the sys repository
[dependencies.pango]
git = "https://github.com/gtk-rs/gtk-rs-core"
[dependencies.pango-sys]
git = "https://github.com/gtk-rs/sys"
[dependencies.gio]
git = "https://github.com/gtk-rs/gtk-rs-core"
[dependencies.gio-sys]
git = "https://github.com/gtk-rs/sys"
[dependencies.gtk]
git = "https://github.com/gtk-rs/gtk3-rs"
[dependencies.gtk-sys]
git = "https://github.com/gtk-rs/gtk3-rs"