Skip to content

Commit 5e61b27

Browse files
committed
Minor fixes
1 parent 4ae567d commit 5e61b27

14 files changed

+204
-906
lines changed

Builds/VisualStudio/stellar-core.vcxproj

-1
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,6 @@ exit /b 0
873873
<ClCompile Include="src\$(Configuration)\generated\xdr\XDRFilesSha256.cpp" />
874874
</ItemGroup>
875875
<ItemGroup>
876-
<ClInclude Include="..\..\lib\bloom_filter.hpp" />
877876
<ClInclude Include="..\..\lib\catch.hpp" />
878877
<ClInclude Include="..\..\lib\clara.hpp" />
879878
<ClInclude Include="..\..\lib\util\finally.h" />

Builds/VisualStudio/stellar-core.vcxproj.filters

-3
Original file line numberDiff line numberDiff line change
@@ -1754,9 +1754,6 @@
17541754
<ClInclude Include="..\..\src\util\xdrquery\XDRQueryParser.h">
17551755
<Filter>util\xdrquery</Filter>
17561756
</ClInclude>
1757-
<ClInclude Include="..\..\lib\bloom_filter.hpp">
1758-
<Filter>lib</Filter>
1759-
</ClInclude>
17601757
<ClInclude Include="..\..\lib\clara.hpp">
17611758
<Filter>lib</Filter>
17621759
</ClInclude>

COPYING

-9
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,6 @@ lib/binaryfusefilter.h:
4646
Licensed under the Apache License, Version 2.0
4747
(<https://www.apache.org/licenses/LICENSE-2.0>)
4848

49-
lib/bloom_filter.hpp:
50-
51-
The C++ Open Bloom Filter Library,
52-
Copyright 2000 Arash Partow
53-
(arash at partow dot net)
54-
(https://www.partow.net/programming/bloomfilter/index.html)
55-
Licensed under the MIT license
56-
(http://opensource.org/licenses/MIT)
57-
5849
lib/catch.hpp:
5950

6051
The Catch library,

Cargo.lock

+23-24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ members = ["src/rust", "lib/tracy-client-sys"]
33

44
[patch.crates-io]
55
tracy-client-sys = { path = "lib/tracy-client-sys" }
6+
stellar-xdr = { git = "https://github.com/stellar/rs-stellar-xdr", rev = "ae805d0f8c28ca86327a834eea9ce7d29b0a63bb" }
67

78
#[patch."https://github.com/stellar/rs-soroban-env"]
89
#soroban-env-common = { path = "../rs-soroban-env/soroban-env-common" }
@@ -13,7 +14,6 @@ tracy-client-sys = { path = "lib/tracy-client-sys" }
1314
# stellar-xdr = { path = "../rs-stellar-xdr/" }
1415

1516
# [patch.crates-io]
16-
# stellar-xdr = { git = "https://github.com/stellar/rs-stellar-xdr", rev = "2775f4b6" }
1717
# wasmi = { package = "soroban-wasmi", git = "https://github.com/stellar/wasmi", rev = "862b32f5" }
1818
# soroban-env-common = { git = "https://github.com/stellar/rs-soroban-env", rev = "eda2ab70" }
1919
# soroban-native-sdk-macros = { git = "https://github.com/stellar/rs-soroban-env", rev = "eda2ab70" }

0 commit comments

Comments
 (0)