Use workspaces to separate crates
authorRJ Rybarczyk <rj@rybar.tech>
Fri, 15 Nov 2019 02:44:30 +0000 (02:44 +0000)
committerRJ Rybarczyk <rj@rybar.tech>
Fri, 15 Nov 2019 02:44:30 +0000 (02:44 +0000)
commit88fef649b15fa030cb91de76d58346a0bc408834
tree9cb7981caadb0228ddf7e9b8fcd23e3742074509
parent2afd53148f42eb9b7319d3e8841578aacdc31e6e
Use workspaces to separate crates
149 files changed:
.travis.yml
Cargo.toml
fuzz/.gitignore [deleted file]
fuzz/Cargo.toml [deleted file]
fuzz/fuzz_targets/chanmon_deser_target.rs [deleted file]
fuzz/fuzz_targets/chanmon_fail_consistency.rs [deleted file]
fuzz/fuzz_targets/full_stack_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/gen_target.sh [deleted file]
fuzz/fuzz_targets/msg_targets/msg_accept_channel_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_announcement_signatures_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_channel_announcement_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_channel_reestablish_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_channel_update_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_closing_signed_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_commitment_signed_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_decoded_onion_error_packet_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_error_message_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_funding_created_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_funding_locked_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_funding_signed_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_init_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_node_announcement_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_onion_hop_data_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_open_channel_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_ping_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_pong_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_revoke_and_ack_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_shutdown_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_target_template.txt [deleted file]
fuzz/fuzz_targets/msg_targets/msg_update_add_htlc_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_update_fail_htlc_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_update_fail_malformed_htlc_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_update_fee_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/msg_update_fulfill_htlc_target.rs [deleted file]
fuzz/fuzz_targets/msg_targets/utils.rs [deleted file]
fuzz/fuzz_targets/peer_crypt_target.rs [deleted file]
fuzz/fuzz_targets/router_target.rs [deleted file]
fuzz/fuzz_targets/utils/mod.rs [deleted file]
fuzz/fuzz_targets/utils/test_logger.rs [deleted file]
fuzz/travis-fuzz.sh [deleted file]
lightning-net-tokio/Cargo.toml [new file with mode: 0644]
lightning-net-tokio/src/lib.rs [new file with mode: 0644]
lightning/Cargo.toml [new file with mode: 0644]
lightning/fuzz/.gitignore [new file with mode: 0644]
lightning/fuzz/Cargo.toml [new file with mode: 0644]
lightning/fuzz/fuzz_targets/chanmon_deser_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/chanmon_fail_consistency.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/full_stack_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/gen_target.sh [new file with mode: 0755]
lightning/fuzz/fuzz_targets/msg_targets/msg_accept_channel_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_announcement_signatures_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_channel_announcement_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_channel_reestablish_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_channel_update_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_closing_signed_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_commitment_signed_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_decoded_onion_error_packet_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_error_message_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_funding_created_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_funding_locked_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_funding_signed_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_init_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_node_announcement_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_onion_hop_data_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_open_channel_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_ping_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_pong_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_revoke_and_ack_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_shutdown_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_target_template.txt [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_update_add_htlc_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_update_fail_htlc_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_update_fail_malformed_htlc_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_update_fee_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/msg_update_fulfill_htlc_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/msg_targets/utils.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/peer_crypt_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/router_target.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/utils/mod.rs [new file with mode: 0644]
lightning/fuzz/fuzz_targets/utils/test_logger.rs [new file with mode: 0644]
lightning/fuzz/travis-fuzz.sh [new file with mode: 0755]
lightning/src/chain/chaininterface.rs [new file with mode: 0644]
lightning/src/chain/keysinterface.rs [new file with mode: 0644]
lightning/src/chain/mod.rs [new file with mode: 0644]
lightning/src/chain/transaction.rs [new file with mode: 0644]
lightning/src/lib.rs [new file with mode: 0644]
lightning/src/ln/chan_utils.rs [new file with mode: 0644]
lightning/src/ln/chanmon_update_fail_tests.rs [new file with mode: 0644]
lightning/src/ln/channel.rs [new file with mode: 0644]
lightning/src/ln/channelmanager.rs [new file with mode: 0644]
lightning/src/ln/channelmonitor.rs [new file with mode: 0644]
lightning/src/ln/functional_test_utils.rs [new file with mode: 0644]
lightning/src/ln/functional_tests.rs [new file with mode: 0644]
lightning/src/ln/mod.rs [new file with mode: 0644]
lightning/src/ln/msgs.rs [new file with mode: 0644]
lightning/src/ln/onion_utils.rs [new file with mode: 0644]
lightning/src/ln/peer_channel_encryptor.rs [new file with mode: 0644]
lightning/src/ln/peer_handler.rs [new file with mode: 0644]
lightning/src/ln/router.rs [new file with mode: 0644]
lightning/src/util/byte_utils.rs [new file with mode: 0644]
lightning/src/util/chacha20.rs [new file with mode: 0644]
lightning/src/util/chacha20poly1305rfc.rs [new file with mode: 0644]
lightning/src/util/config.rs [new file with mode: 0644]
lightning/src/util/errors.rs [new file with mode: 0644]
lightning/src/util/events.rs [new file with mode: 0644]
lightning/src/util/fuzz_wrappers.rs [new file with mode: 0644]
lightning/src/util/logger.rs [new file with mode: 0644]
lightning/src/util/macro_logger.rs [new file with mode: 0644]
lightning/src/util/mod.rs [new file with mode: 0644]
lightning/src/util/poly1305.rs [new file with mode: 0644]
lightning/src/util/ser.rs [new file with mode: 0644]
lightning/src/util/ser_macros.rs [new file with mode: 0644]
lightning/src/util/test_utils.rs [new file with mode: 0644]
lightning/src/util/transaction_utils.rs [new file with mode: 0644]
net-tokio/Cargo.toml [deleted file]
net-tokio/src/lib.rs [deleted file]
src/chain/chaininterface.rs [deleted file]
src/chain/keysinterface.rs [deleted file]
src/chain/mod.rs [deleted file]
src/chain/transaction.rs [deleted file]
src/lib.rs [deleted file]
src/ln/chan_utils.rs [deleted file]
src/ln/chanmon_update_fail_tests.rs [deleted file]
src/ln/channel.rs [deleted file]
src/ln/channelmanager.rs [deleted file]
src/ln/channelmonitor.rs [deleted file]
src/ln/functional_test_utils.rs [deleted file]
src/ln/functional_tests.rs [deleted file]
src/ln/mod.rs [deleted file]
src/ln/msgs.rs [deleted file]
src/ln/onion_utils.rs [deleted file]
src/ln/peer_channel_encryptor.rs [deleted file]
src/ln/peer_handler.rs [deleted file]
src/ln/router.rs [deleted file]
src/util/byte_utils.rs [deleted file]
src/util/chacha20.rs [deleted file]
src/util/chacha20poly1305rfc.rs [deleted file]
src/util/config.rs [deleted file]
src/util/errors.rs [deleted file]
src/util/events.rs [deleted file]
src/util/fuzz_wrappers.rs [deleted file]
src/util/logger.rs [deleted file]
src/util/macro_logger.rs [deleted file]
src/util/mod.rs [deleted file]
src/util/poly1305.rs [deleted file]
src/util/ser.rs [deleted file]
src/util/ser_macros.rs [deleted file]
src/util/test_utils.rs [deleted file]
src/util/transaction_utils.rs [deleted file]