rain1024 commited on
Commit
e6b7d02
·
1 Parent(s): 1efa4be
Files changed (2) hide show
  1. .gitignore +1 -0
  2. rust/Cargo.lock +132 -0
.gitignore CHANGED
@@ -5,3 +5,4 @@ __pycache__/
5
  *.egg-info/
6
  dist/
7
  build/
 
 
5
  *.egg-info/
6
  dist/
7
  build/
8
+ rust/target/
rust/Cargo.lock ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "address-converter"
7
+ version = "0.1.0"
8
+ dependencies = [
9
+ "serde",
10
+ "serde_json",
11
+ "unicode-normalization",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "itoa"
16
+ version = "1.0.17"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
19
+
20
+ [[package]]
21
+ name = "memchr"
22
+ version = "2.8.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
25
+
26
+ [[package]]
27
+ name = "proc-macro2"
28
+ version = "1.0.106"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
31
+ dependencies = [
32
+ "unicode-ident",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "quote"
37
+ version = "1.0.44"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
40
+ dependencies = [
41
+ "proc-macro2",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "serde"
46
+ version = "1.0.228"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
49
+ dependencies = [
50
+ "serde_core",
51
+ "serde_derive",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "serde_core"
56
+ version = "1.0.228"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
59
+ dependencies = [
60
+ "serde_derive",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "serde_derive"
65
+ version = "1.0.228"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
68
+ dependencies = [
69
+ "proc-macro2",
70
+ "quote",
71
+ "syn",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "serde_json"
76
+ version = "1.0.149"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
79
+ dependencies = [
80
+ "itoa",
81
+ "memchr",
82
+ "serde",
83
+ "serde_core",
84
+ "zmij",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "syn"
89
+ version = "2.0.114"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
92
+ dependencies = [
93
+ "proc-macro2",
94
+ "quote",
95
+ "unicode-ident",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "tinyvec"
100
+ version = "1.10.0"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
103
+ dependencies = [
104
+ "tinyvec_macros",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "tinyvec_macros"
109
+ version = "0.1.1"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
112
+
113
+ [[package]]
114
+ name = "unicode-ident"
115
+ version = "1.0.22"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
118
+
119
+ [[package]]
120
+ name = "unicode-normalization"
121
+ version = "0.1.25"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
124
+ dependencies = [
125
+ "tinyvec",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "zmij"
130
+ version = "1.0.19"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"