File tree Expand file tree Collapse file tree 8 files changed +27
-27
lines changed Expand file tree Collapse file tree 8 files changed +27
-27
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " librespot"
3
- version = " 0.3.1 "
3
+ version = " 0.4.0 "
4
4
authors = [" Librespot Org" ]
5
5
license = " MIT"
6
6
description = " An open source client library for Spotify, with support for Spotify Connect"
@@ -22,31 +22,31 @@ doc = false
22
22
23
23
[dependencies .librespot-audio ]
24
24
path = " audio"
25
- version = " 0.3.1 "
25
+ version = " 0.4.0 "
26
26
27
27
[dependencies .librespot-connect ]
28
28
path = " connect"
29
- version = " 0.3.1 "
29
+ version = " 0.4.0 "
30
30
31
31
[dependencies .librespot-core ]
32
32
path = " core"
33
- version = " 0.3.1 "
33
+ version = " 0.4.0 "
34
34
35
35
[dependencies .librespot-discovery ]
36
36
path = " discovery"
37
- version = " 0.3.1 "
37
+ version = " 0.4.0 "
38
38
39
39
[dependencies .librespot-metadata ]
40
40
path = " metadata"
41
- version = " 0.3.1 "
41
+ version = " 0.4.0 "
42
42
43
43
[dependencies .librespot-playback ]
44
44
path = " playback"
45
- version = " 0.3.1 "
45
+ version = " 0.4.0 "
46
46
47
47
[dependencies .librespot-protocol ]
48
48
path = " protocol"
49
- version = " 0.3.1 "
49
+ version = " 0.4.0 "
50
50
51
51
[dependencies ]
52
52
base64 = " 0.13"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " librespot-audio"
3
- version = " 0.3.1 "
3
+ version = " 0.4.0 "
4
4
authors = [" Paul Lietar <paul@lietar.net>" ]
5
5
description =" The audio fetching and processing logic for librespot"
6
6
license =" MIT"
7
7
edition = " 2018"
8
8
9
9
[dependencies .librespot-core ]
10
10
path = " ../core"
11
- version = " 0.3.1 "
11
+ version = " 0.4.0 "
12
12
13
13
[dependencies ]
14
14
aes-ctr = " 0.6"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " librespot-connect"
3
- version = " 0.3.1 "
3
+ version = " 0.4.0 "
4
4
authors = [" Paul Lietar <paul@lietar.net>" ]
5
5
description = " The discovery and Spotify Connect logic for librespot"
6
6
license = " MIT"
@@ -20,19 +20,19 @@ tokio-stream = "0.1.1"
20
20
21
21
[dependencies .librespot-core ]
22
22
path = " ../core"
23
- version = " 0.3.1 "
23
+ version = " 0.4.0 "
24
24
25
25
[dependencies .librespot-playback ]
26
26
path = " ../playback"
27
- version = " 0.3.1 "
27
+ version = " 0.4.0 "
28
28
29
29
[dependencies .librespot-protocol ]
30
30
path = " ../protocol"
31
- version = " 0.3.1 "
31
+ version = " 0.4.0 "
32
32
33
33
[dependencies .librespot-discovery ]
34
34
path = " ../discovery"
35
- version = " 0.3.1 "
35
+ version = " 0.4.0 "
36
36
37
37
[features ]
38
38
with-dns-sd = [" librespot-discovery/with-dns-sd" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " librespot-core"
3
- version = " 0.3.1 "
3
+ version = " 0.4.0 "
4
4
authors = [" Paul Lietar <paul@lietar.net>" ]
5
5
build = " build.rs"
6
6
description = " The core functionality provided by librespot"
@@ -10,7 +10,7 @@ edition = "2018"
10
10
11
11
[dependencies .librespot-protocol ]
12
12
path = " ../protocol"
13
- version = " 0.3.1 "
13
+ version = " 0.4.0 "
14
14
15
15
[dependencies ]
16
16
aes = " 0.6"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " librespot-discovery"
3
- version = " 0.3.1 "
3
+ version = " 0.4.0 "
4
4
authors = [" Paul Lietar <paul@lietar.net>" ]
5
5
description = " The discovery logic for librespot"
6
6
license = " MIT"
@@ -27,7 +27,7 @@ dns-sd = { version = "0.1.3", optional = true }
27
27
[dependencies .librespot-core ]
28
28
path = " ../core"
29
29
default_features = false
30
- version = " 0.3.1 "
30
+ version = " 0.4.0 "
31
31
32
32
[dev-dependencies ]
33
33
futures = " 0.3"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " librespot-metadata"
3
- version = " 0.3.1 "
3
+ version = " 0.4.0 "
4
4
authors = [" Paul Lietar <paul@lietar.net>" ]
5
5
description = " The metadata logic for librespot"
6
6
license = " MIT"
@@ -15,7 +15,7 @@ log = "0.4"
15
15
16
16
[dependencies .librespot-core ]
17
17
path = " ../core"
18
- version = " 0.3.1 "
18
+ version = " 0.4.0 "
19
19
[dependencies .librespot-protocol ]
20
20
path = " ../protocol"
21
- version = " 0.3.1 "
21
+ version = " 0.4.0 "
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " librespot-playback"
3
- version = " 0.3.1 "
3
+ version = " 0.4.0 "
4
4
authors = [" Sasha Hilton <sashahilton00@gmail.com>" ]
5
5
description = " The audio playback logic for librespot"
6
6
license = " MIT"
@@ -9,13 +9,13 @@ edition = "2018"
9
9
10
10
[dependencies .librespot-audio ]
11
11
path = " ../audio"
12
- version = " 0.3.1 "
12
+ version = " 0.4.0 "
13
13
[dependencies .librespot-core ]
14
14
path = " ../core"
15
- version = " 0.3.1 "
15
+ version = " 0.4.0 "
16
16
[dependencies .librespot-metadata ]
17
17
path = " ../metadata"
18
- version = " 0.3.1 "
18
+ version = " 0.4.0 "
19
19
20
20
[dependencies ]
21
21
futures-executor = " 0.3"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " librespot-protocol"
3
- version = " 0.3.1 "
3
+ version = " 0.4.0 "
4
4
authors = [" Paul Liétar <paul@lietar.net>" ]
5
5
build = " build.rs"
6
6
description = " The protobuf logic for communicating with Spotify servers"
You can’t perform that action at this time.
0 commit comments