+7
-7
Cargo.lock
+7
-7
Cargo.lock
···
4
4
5
5
[[package]]
6
6
name = "futures"
7
-
version = "0.0.0"
7
+
version = "0.0.1"
8
8
dependencies = [
9
9
"futures-combinators",
10
10
"futures-compat",
···
15
15
16
16
[[package]]
17
17
name = "futures-combinators"
18
-
version = "0.0.0"
18
+
version = "0.0.1"
19
19
dependencies = [
20
20
"futures-core",
21
21
"futures-util",
···
23
23
24
24
[[package]]
25
25
name = "futures-compat"
26
-
version = "0.0.0"
26
+
version = "0.0.1"
27
27
dependencies = [
28
28
"futures-core",
29
29
]
30
30
31
31
[[package]]
32
32
name = "futures-core"
33
-
version = "0.0.0"
33
+
version = "0.0.1"
34
34
35
35
[[package]]
36
36
name = "futures-derive"
37
-
version = "0.0.0"
37
+
version = "0.0.1"
38
38
dependencies = [
39
39
"proc-macro2",
40
40
"quote",
···
43
43
44
44
[[package]]
45
45
name = "futures-util"
46
-
version = "0.0.0"
46
+
version = "0.0.1"
47
47
dependencies = [
48
48
"futures-core",
49
49
]
50
50
51
51
[[package]]
52
52
name = "lifetime-guard"
53
-
version = "0.0.0"
53
+
version = "0.0.1"
54
54
55
55
[[package]]
56
56
name = "proc-macro2"
+8
-8
Cargo.toml
+8
-8
Cargo.toml
···
3
3
members = [ "futures", "futures-core", "futures-combinators", "futures-compat", "futures-derive", "futures-util", "lifetime-guard"]
4
4
5
5
[workspace.package]
6
-
version = "0.0.0"
6
+
version = "0.0.1"
7
7
rust-version = "1.87"
8
8
edition = "2024"
9
9
license = "MIT OR Apache-2.0"
···
12
12
homepage = "https://github.com/AngleSideAngle/bcsc"
13
13
14
14
[workspace.dependencies]
15
-
futures = { path = "futures", version = "0.0.0" }
16
-
futures-combinators = { path = "futures-combinators", version = "0.0.0" }
17
-
futures-compat = { path = "futures-compat", version = "0.0.0" }
18
-
futures-core = { path = "futures-core", version = "0.0.0" }
19
-
futures-derive = { path = "futures-derive", version = "0.0.0" }
20
-
futures-util = { path = "futures-util", version = "0.0.0" }
21
-
lifetime-guard = { path = "lifetime-guard", version = "0.0.0" }
15
+
futures = { path = "futures", version = "0.0.1" }
16
+
futures-combinators = { path = "futures-combinators", version = "0.0.1" }
17
+
futures-compat = { path = "futures-compat", version = "0.0.1" }
18
+
futures-core = { path = "futures-core", version = "0.0.1" }
19
+
futures-derive = { path = "futures-derive", version = "0.0.1" }
20
+
futures-util = { path = "futures-util", version = "0.0.1" }
21
+
lifetime-guard = { path = "lifetime-guard", version = "0.0.1" }