You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried cue import with the basic TOML example from the landing page of the official TOML website, and it failed with an unknown Datetime error (details below).
What version of CUE are you using (cue version)?
$ cue version
cue version v0.10.0-alpha.2.0.20240730115453-9b91188ea551
go version go1.22.5
-buildmode exe
-compiler gc
CGO_ENABLED 1
GOARCH amd64
GOOS linux
GOAMD64 v1
cue.lang.version v0.10.0
Does this issue reproduce with the latest stable release?
N/A
What did you do?
exec cue import example.toml
-- example.toml --
# This is a TOML document
title = "TOML Example"
[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00
[database]
enabled = true
ports = [ 8000, 8001, 8002 ]
data = [ ["delta", "phi"], [3.14] ]
temp_targets = { cpu = 79.5, case = 72.0 }
[servers]
[servers.alpha]
ip = "10.0.0.1"
role = "frontend"
[servers.beta]
ip = "10.0.0.2"
role = "backend"
What did you expect to see?
No error, an example.cue successfully created via the cue import command.
I tried
cue import
with the basic TOML example from the landing page of the official TOML website, and it failed with anunknown Datetime
error (details below).What version of CUE are you using (
cue version
)?Does this issue reproduce with the latest stable release?
N/A
What did you do?
What did you expect to see?
No error, an
example.cue
successfully created via thecue import
command.What did you see instead?
The text was updated successfully, but these errors were encountered: