Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,37 @@
name = "rustybgpd"
version = "0.2.0"
authors = ["FUJITA Tomonori <fujita.tomonori@gmail.com>"]
edition = "2018"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ascii = "1"
tonic = "0.5.2"
bytes = "1.0"
bytes = "1.4"
chrono = "0.4"
prost = "0.8"
prost-types = "0.8"
prost-derive = "0.8"
tokio = { version = "=1.27", features = ["full"] }
tokio = { version = "1.29", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec","time"] }
tokio-stream = { version = "0.1", features = ["net"] }
clap = "2.33"
futures = "=0.3.16"
futures-core = "=0.3.16"
clap = "2.34"
futures = "0.3.28"
futures-core = "0.3.28"
patricia_tree = "0.3"
regex = "1"
hostname = "0.3"
fnv = "1.0"
num_cpus = "1.0"
num_cpus = "1.16"
socket2 = { version="0.4", features = ["all"]}
byteorder = "1.3.2"
byteorder = "1.4.3"
once_cell = "1"
thiserror = "1"
libc = "0.2.94"
libc = "0.2.147"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
toml = "0.5.7"
toml = "0.5.11"
nix = "0.22"
uuid = { version = "0.8", features = ["v4"] }
ip_network_table-deps-treebitmap = "0.5.0"
Expand Down
47 changes: 33 additions & 14 deletions tests/integration/functional/go.mod
Original file line number Diff line number Diff line change
@@ -1,26 +1,45 @@
module github.com/osrg/rustybgp/tests/integration/functional

go 1.13
go 1.20

require (
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
github.com/Microsoft/go-winio v0.4.14 // indirect
github.com/containerd/containerd v1.3.3 // indirect
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/docker v1.4.2-0.20200214221943-d8772509d1a2
github.com/docker/docker v27.0.0+incompatible
github.com/docker/go-connections v0.4.0
github.com/golang/protobuf v1.5.4
github.com/osrg/gobgp v0.0.0-20200219043526-659ef4bc371c
github.com/stretchr/testify v1.9.0
google.golang.org/grpc v1.64.0
)

require (
github.com/Microsoft/go-winio v0.4.14 // indirect
github.com/containerd/log v0.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/distribution/reference v0.6.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/protobuf v1.3.4
github.com/gorilla/mux v1.7.4 // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/moby/term v0.5.0 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/osrg/gobgp v0.0.0-20200219043526-659ef4bc371c
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sirupsen/logrus v1.4.2 // indirect
github.com/stretchr/testify v1.5.1
github.com/pmezard/go-difflib v1.0.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.52.0 // indirect
go.opentelemetry.io/otel v1.27.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.27.0 // indirect
go.opentelemetry.io/otel/metric v1.27.0 // indirect
go.opentelemetry.io/otel/sdk v1.27.0 // indirect
go.opentelemetry.io/otel/trace v1.27.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
google.golang.org/grpc v1.27.1
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 // indirect
google.golang.org/protobuf v1.34.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/v3 v3.0.2 // indirect
)
Loading