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