Skip to content

Commit

Permalink
copy tokio1.2 to master
Browse files Browse the repository at this point in the history
  • Loading branch information
tpbraun96 committed Jan 15, 2022
1 parent fac7e9c commit d510f44
Show file tree
Hide file tree
Showing 432 changed files with 54,709 additions and 13,216 deletions.
Binary file added .DS_Store
Binary file not shown.
34 changes: 30 additions & 4 deletions .cargo/config
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,45 @@ linker = "C:/android-ndk-r21d/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-l
[target.x86_64-pc-windows-msvc]
rustflags = [
"-C",
"target-cpu=native",
"target-cpu=sandybridge",
"-C",
"target-feature=+aes,+sse2,+sse4.1,+ssse3,avx,avx2"
]

[target.x86_64-pc-windows-gnu]
rustflags = [
"-C",
"target-cpu=sandybridge",
"-C",
"target-feature=+aes,+sse2,+sse4.1,+ssse3,avx,avx2"
]

[target.x86_64-unknown-linux-gnu]
rustflags = [
"-C",
"target-cpu=native",
"target-cpu=sandybridge",
"-C",
"target-feature=+aes,+sse2,+sse4.1,+ssse3,avx,avx2"
]

[target.x86_64-unknown-linux-musl]
rustflags = [
"-C",
"target-cpu=sandybridge",
"-C",
"target-feature=+aes,+sse2,+sse4.1,+ssse3,avx,avx2"
]

[target.aarch64-apple-darwin]
rustflags = [
"-C",
"target-feature=+aes,+neon,+sve,+sve2,+sve2-aes"
]

[target.x86_64-apple-darwin]
linker = "x86_64-apple-darwin14-clang"
ar = "x86_64-apple-darwin14-ar"
#linker = "x86_64-apple-darwin14-clang" // enable these when building on windows
#ar = "x86_64-apple-darwin14-ar" // " "
rustflags = [
"-C",
"target-feature=+aes,+sse2,+sse4.1,+ssse3,avx,avx2"
]
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*target/
.idea/
5 changes: 4 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@

[submodule "net2-rs"]
path = net2-rs
url = https://github.com/rust-lang-nursery/net2-rs.git
url = https://github.com/rust-lang-nursery/net2-rs.git
[submodule "tokio_agnostic_uds"]
path = tokio_agnostic_uds
url = ./tokio_agnostic_uds
44 changes: 20 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,38 +1,34 @@
[workspace]

members = [
"hyxewave",
"tokio_agnostic_uds",
"satori_nos",
"lusna_ffi",
"async_udt",
"lusna_sdk",
"hyxe_nat",
"hyxe_user",
"hyxe_config",
"hyxe_fs",
"hyxe_crypt",
"async_ip",
"ez_pqcrypto",
"hyxe_net",
"ez_pqcrypto/pqcrypto/pqcrypto",
"ez_pqcrypto/pqcrypto/pqcrypto-traits",
#"pqcrypto/pqcrypto-kyber",
#"pqcrypto/pqcrypto-frodo",
#"pqcrypto/pqcrypto-ntru",
"ez_pqcrypto/pqcrypto/pqcrypto-saber",
#"pqcrypto/pqcrypto-ledacryptkem",
#"pqcrypto/pqcrypto-threebears",
#"pqcrypto/pqcrypto-classicmceliece",
#"pqcrypto/pqcrypto-newhope",
#"pqcrypto/pqcrypto-hqc",
#"pqcrypto/pqcrypto-mqdss",
#"pqcrypto/pqcrypto-dilithium",
#"pqcrypto/pqcrypto-falcon",
#"pqcrypto/pqcrypto-qtesla",
#"pqcrypto/pqcrypto-rainbow",
#"pqcrypto/pqcrypto-sphincsplus",
"rpassword"
"firebase-rtdb",
"netbeam",
"online_order_handler"
]

exclude = [
"./target/*",
"rustai"
]
"./target/*"
]

[profile.dev]
panic = "abort"

#[licenses]
#default = "warn"
#confidence-threshold = 0.95

#allow = [
# "MIT",
# "Apache-2.0"
#]
Loading

0 comments on commit d510f44

Please sign in to comment.